29.11.2015, 15:53
I want to make anti ban evade so If player got banned he will be automatically kick by the server.So I changed banned=1 in my accname.txt.And I put this code at OnPlayerConnect :
But when I tried to connect it doesn't kick me.Any solution for this?
PHP код:
if (dini_Int(savefolder, "banned") == 1)
{
SendClientMessage(playerid,COLOR_PURPLE,"* You was banned from this server *");
Kick(playerid);
}