C:\Documents and Settings\User\Desktop\sa-mp\PGP 0.2x\filterscripts\pgp.pwn(186) : error 017: undefined symbol "PlayerInfo" C:\Documents and Settings\User\Desktop\sa-mp\PGP 0.2x\filterscripts\pgp.pwn(186) : warning 215: expression has no effect C:\Documents and Settings\User\Desktop\sa-mp\PGP 0.2x\filterscripts\pgp.pwn(186) : error 001: expected token: ";", but found "]" C:\Documents and Settings\User\Desktop\sa-mp\PGP 0.2x\filterscripts\pgp.pwn(186) : error 029: invalid expression, assumed zero C:\Documents and Settings\User\Desktop\sa-mp\PGP 0.2x\filterscripts\pgp.pwn(186) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors. |
//------------------------------------------------------------------------------------------------------ public OnPlayerConnect(playerid) { SendClientMessage(playerid,COLOR_YELLOW,"SERVER: Welcome To Pro Gamers Playground - Season 1, For help type /help "); gActivePlayers[playerid]++; gLastGaveCash[playerid] = GetTickCount(); PlayerInfo[playerid][SpawnDance] = true; ApplyAnimation(playerid,"DANCING","DNCE_M_B",4.0,1 ,0,0,0,-1); //preventing a bug for the animation not being applied the first time OnPlayerRequestClass is called return 1; } //------------------------------------------------------------------------------------------------------ public OnPlayerDisconnect(playerid, reason) { KillTimer( PlayerInfo[playerid][SpawnTimer] ); gActivePlayers[playerid]--; return 1; } //------------------------------------------------------------------------------------------------------ |