SA-MP Forums Archive
Error - 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 (/showthread.php?tid=412410)



Error - barbarbar1 - 01.02.2013

Error(Every error in the same line)
error 017: undefined symbol "UserStats"
warning 215: expression has no effect
error 001: expected token: ";", but found "]"
error 029: invalid expression, assumed zero
fatal error 107: too many error messages on one line
pawn Код:
GetPlayerName(playerid, UserStats[playerid][Name], MAX_PLAYER_NAME);



Re: Error - ikkentim - 01.02.2013

UserStats isn't defined. Thats the whole problem.


Re: Error - barbarbar1 - 02.02.2013

Changed it to PlayerInfo, and it is denfined...
pawn Код:
enum pInfo
{
    Name[MAX_PLAYER_NAME],
    Password[32],
    Admin,
    Money
};
new PlayerInfo[MAX_PLAYERS][pInfo];



Re: Error - barbarbar1 - 02.02.2013

Nevermind, got this fixed.