08.06.2013, 00:53
Put this under OnPlayerConnect
This if the account is banned, You gotta make it with your variables/defines for the IP check if its banned or not!
pawn Код:
if(PlayerInfo[playerid][pBanned] == 1)
{
SendClientMessage(playerid, WHITE, "You're banned from the server.");
Kick(playerid);
return 1;
}