20.07.2010, 06:55
Ok i got a splash screen, im trying to stop the player from spawning till it's over, but so far, they hit spawn it says CANT SPAWN YET! and lets them spawn anyways
Код:
public OnPlayerSpawn(playerid)
{
if (IsSpawned[playerid] == 0)
{
IsSpawned[playerid] = 1;
}else{
SendClientMessage(playerid,COLOR_RED,"cantspawn");
}
return true;}

