15.02.2013, 21:03
Do it when they try to login
Now remember that because 0.3x makes it so you can't send messages to the person while they are being kicked. You need to find a way around this.
I recommend this post by Kalcor. it is VERY useful. I have gotten it to work.
http://forum.sa-mp.com/showpost.php?...2&postcount=14
pawn Код:
if(PlayerInfo[playerid][pBanned] >= 1 )
{
SendClientMessage( playerid, COLOR_LIGHTRED, "SERVER: You're banned from this server." );
Kick(playerid);
return 1;
}
I recommend this post by Kalcor. it is VERY useful. I have gotten it to work.
http://forum.sa-mp.com/showpost.php?...2&postcount=14