02.02.2012, 12:22
returning 0 on OnPlayerRequestSpawn() prevents the player from spawning. i would use a global variable, and then check if it equals to 60.
pawn Code:
public OnPlayerRequestSpawn(playerid)
{
if(someVar == 60)
{
return 0;
}
// rest of the code here
return 1;
}