23.12.2010, 01:59
60000 is 60seconds.
You had the for(new part messed up.
pawn Код:
public gc(playerid)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(hasspawned[i] == 1)
{
SetPlayerScore(i, GetPlayerScore(i) + 1);
SendClientMessage(playerid,0xFFFFFFFF,"You recieved +1 score for flying!");
}
}
return 1;
}