Error 032 - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Error 032 (
/showthread.php?tid=528398)
Error 032 -
Jigsaw123 - 27.07.2014
Hello guys, I've gotten this error:
Код:
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(863) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(864) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(866) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(867) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(869) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(870) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(872) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(873) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(874) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(875) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(876) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(886) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(887) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(888) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(889) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(892) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(894) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(896) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(909) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(912) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(913) : error 032: array index out of bounds (variable "PlayerInfo")
C:\Users\USER\Desktop\Bone County Roleplay\gamemodes\roleplay.pwn(915) : error 032: array index out of bounds (variable "PlayerInfo")
Could you tell me how it can be fixed and what it is?
Thank you.
Re: Error 032 -
Jefff - 27.07.2014
Show line 863, 864, 866
it means that you are setting too large index in array
new PlayerInfo[10]; // 0-9
PlayerInfo[34] = 1; // array index out of bounds max index is 9 not 34