07.06.2013, 13:31
Try using
instead of
D:\WORLD ATTACK\gamemodes\Test.pwn(601) : error 017: undefined symbol "Player"
Do you have something like this in your script?
pawn Код:
if(Player[playerid][Group] == 0)
pawn Код:
if(Player[playerid][Group] == ( 0))
Do you have something like this in your script?
pawn Код:
enum pInfo
{
pPass, // These things can be anything
pCash,
pAdmin,
pSex,
}
new Player[MAX_PLAYERS][pInfo]; // the pInfo here and at the begin could be something different.