20.07.2010, 10:02
Here is a way you stop people from spawning
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(conditionhere == true)
{
//The player won't spawn
return 0;
}
//Player will spawn
return 1;
}