Anti ban evasion? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Anti ban evasion? (
/showthread.php?tid=190555)
Anti ban evasion? -
Face9000 - 15.11.2010
Is there any way to do an anti ban evasion for players?
Re: Anti ban evasion? -
6d - 15.11.2010
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)
pawn Код:
dini_IntSet(playerfile, "Bevade", 1);
This one OnPlayerConnect (with dini)
pawn Код:
if(dini_Int(playerfile, "Bevade")==1)
{
Ban(playerid);
}
I may be doing a tutorial on this later if you still need help.
Re: Anti ban evasion? -
Face9000 - 16.11.2010
Yes i will appreciate much!
Re: Anti ban evasion? -
MetallicAnt - 23.05.2012
Yes, a tutorial would be very useful, I have the same problem with an unregistered user here, and I have no idea what to do with this guy..
Re: Anti ban evasion? -
Issam - 24.05.2012
As the guy said, make a field on the userstate so once the guy is banned, he's account is going to be locked and if he joins again, he will get banned automatically, but the problem is if he ban evades using another nickname, it wont work.