16.10.2011, 20:33
I want that if is player admin and if is he is not logged in and he wanna spawn send that gametext
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(IsPlayerLogged(playerid) == 0 && if(!IsPlayerAdminEx(playerid))
{
GameTextForPlayer(playerid, "~r~You need to loggin first!", 1500, 3);
}
return 1;
}