24.05.2011, 11:03
you forgot to declare the enum of PlayerData[][] in your script. the line 577 shows that its not global initialized. i dont get this "new 500=123456789" - a string should not start with a numerical character. try
ah, the enum could look like this:
later then you can easily change a
Код:
new FiveHundret=1234567890;
Код:
enum ePlayerData{ Step, put, more, here (and dont forget to leave the comma here out in this last line. the enum ends.) } new gPlayerData[MAX_PLAYERS][ePlayerData];//pay attentioin to the "e" and "g" i put as prefix. it means "e"numered and "g"lobal...
Код:
gPlayerData[playerid][Step]=1;