19.07.2010, 03:03
Ok so, I made a splash screen for my server, and i want it to not spawn the player till they read it. But the screen comes up, and you can still spawn. even thought i made a variable to stop spawning.
Код:
public OnPlayerSpawn(playerid)
{
if (IsSpawned[playerid] == 0)
{
SendClientMessage ( playerid, COLOR_RED, "** You must wait before spawning." );
}
AntiDeAMX();
return false;
}


