13.01.2014, 18:09
Basta verificar se ele estб Logado:
pawn Код:
new bool: Logado[MAX_PLAYERS];
//na CallBack OnPlayerRequestSpawn Coloque
public OnPlayerRequestSpawn(playerid)
{
if(Logado[playerid] == false)
{
GameTextForPlayer(playerid, "Voce Ainda nao esta logado", 2000, 3);
return 0;
}
else
{
return 1;
}
}
//e para qndo ele efetuar o Login:
Logado[playerid] = true;

