16.07.2011, 16:21
Basically I need a timer so that when the player selects there class it won't let them spawn for 10 seconds. I just don't know how to do it?
forward SpawnNow(playerid);
OnPlayerRequestSpawn(playerid)
{
SetTimerEx("SpawnNow",10000,0,"d",playerid);
return 0
}
public SpawnNow(playerid)
{
OnPlayerSpawn(playerid);
return 1;
}