[REQ] REP ++ , good IP limiter for anti - bots - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: [REQ] REP ++ , good IP limiter for anti - bots (
/showthread.php?tid=544656)
[REQ] REP ++ , good IP limiter for anti - bots -
buburuzu19 - 03.11.2014
The title says everything. I need a good and strong ip limiter because i am being flooded with b0ts.
I give rep++.
P.S: The ip limiters who exists now on sa-mp.com are bugged and crashing my server.
Thanks.
Re: [REQ] REP ++ , good IP limiter for anti - bots -
M4D - 03.11.2014
Use This:
https://sampforum.blast.hk/showthread.php?tid=320649
Re: [REQ] REP ++ , good IP limiter for anti - bots -
buburuzu19 - 03.11.2014
It's pastebin link how to save it to .inc ?
Re: [REQ] REP ++ , good IP limiter for anti - bots -
dominik523 - 03.11.2014
Copy everything from pastebin and create new text file in your include folder. Paste the code into the file and go to save as. Type FloodControl.inc as new file's name and that's it.
Or, you can download it here:
http://pastebin.com/download.php?i=FxS1CyX5
Re: [REQ] REP ++ , good IP limiter for anti - bots -
buburuzu19 - 03.11.2014
I tested it , i made it .inc it worked compiled all good, btw nothing happens, i put rate of connection 1000 which is 1 second i connected 30 bots in less than 2 secs but nothing happened.
Any new scripts??
Re: [REQ] REP ++ , good IP limiter for anti - bots -
M4D - 03.11.2014
yes. you have to put a callback in your sccript after including it!
for example :
pawn Код:
public OnPlayerFloodControl(playerid, iCount, iTimeSpan)
{
if(iCount > 2 && iTimeSpan < 5000)
{
Ban(playerid);
}
return 1;
}
Re: [REQ] REP ++ , good IP limiter for anti - bots -
buburuzu19 - 03.11.2014
I did this but is not having effect i can connect 20 bots in less 2 seconds.
UP!!!
Re: [REQ] REP ++ , good IP limiter for anti - bots -
Evocator - 03.11.2014
Then
if(iCount > 5 && iTimeSpan < 2000)