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=592741)
Error 032 -
Scottylad - 29.10.2015
Solved - Thank you!
Re: Error 032 -
jlalt - 29.10.2015
PHP код:
new nxtlevel = PlayerInfo[MAX_PLAYERS][pLevel]+1; --------------- Error is here.
instead of MAX_PLAYERS you should use playerid O.O
PHP код:
new nxtlevel = PlayerInfo[playerid][pLevel]+1; --------------- Error is here.
Re: Error 032 -
ATGOggy - 29.10.2015
Change that line to:
new nxtlevel = PlayerInfo[playerid][pLevel]+1;
It happened because MAX_PLAYERS is equal to 500. And you created this variable with 500 cells(or whatever u can call it). So the id of those cells are 0,1,2,....499. And there is no cell called 500 so when u tried to get the 500th cell, which does not exist, you got this error.
Re: Error 032 -
Scottylad - 29.10.2015
Thanks it worked+1 I didnt see that haha.