apanx_bot_exporter. i thought this is the one that shows you the component nubers for your AI ing. is it a iff programe? no it wont even open at all i get this (Image removed from quote.)
regsvr32 \windows\system32\COMDLG32.OCX
you can also put this code in your AI , in the function 'activate', after the 'if active ...' fout = open("C:/tmp/mybotsId.txt", 'a') # change the file name if you want goon = 1 i = 0 while goon == 1: if i > self.GetNumComponents(): break currentType = self.GetComponentType(i) fout.write("identifier " + str(i) + " : " + currentType + "\n" ) i = i+ 1 if fout: fout.close() (be aware of the indentation problem).
fout = open("C:/tmp/mybotsId.txt", 'a') # change the file name if you want goon = 1 i = 0 while goon == 1: if i > self.GetNumComponents(): break currentType = self.GetComponentType(i) fout.write("identifier " + str(i) + " : " + currentType + "\n" ) i = i+ 1 if fout: fout.close()