15.07.2013, 15:31
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if( ... tutorial is in progress ... )
{
SendClientMessage(playerid, 0xFF0000FF, "You cannot spawn at the moment. Wait for the tutorial to be finished.");
return 0; //prevent them from spawning
}
return 1;
}