15.11.2010, 21:28
Yes Sir,
It's possible.
You have to make a field in the user file that say "Bevade", if it's set to 1 or to true then when he joins the server he is auto-banned.
Useful includes may be dini.inc for saving stuff.
A example of this should be:
This one on the command (with dini)
This one OnPlayerConnect (with dini)
I may be doing a tutorial on this later if you still need help.
It's possible.
You have to make a field in the user file that say "Bevade", if it's set to 1 or to true then when he joins the server he is auto-banned.
Useful includes may be dini.inc for saving stuff.
A example of this should be:
This one on the command (with dini)
pawn Код:
dini_IntSet(playerfile, "Bevade", 1);
pawn Код:
if(dini_Int(playerfile, "Bevade")==1)
{
Ban(playerid);
}