28.06.2009, 10:08
how to block a player in the stage of connecting, before stage of choice of skin, until he not login? help please)
public OnPlayerRequestSpawn(playerid)
{
if(Logged[playerid] == false) //your variable to check fi the player is logged in
{
SendClientMessage(playerid, color, "Not allowed to spawn. Please login!");
return 0;
}
return 1;
}