22.10.2011, 14:07
Use OnPlayerRequestSpawn
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(login[playerid]/*change this to ur own variable*/ == 0) // 0 = not logged in and 1 = logged in
{
SendClientMessage(playerid,colors,message); // u must change the colors and the message
Kick(playerid);
}
return 1;
}