SA-MP Forums Archive
Aimbots in my server - 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: Aimbots in my server (/showthread.php?tid=505333)



Aimbots in my server - arakuta - 08.04.2014

Heys guys, since 0.3z, i'm happy with lagcomp, but there are some shitty tools players are using to get benefits, like auto aim. Does anyone know or have something that can help me, an anti-aimbot or something? Thanks


Re: Aimbots in my server - UncleBens - 08.04.2014

You can't just block aimbot. it's client side not server side. but some aimbots can be spotted easily. Just have your admins watch out.

+rep if i helped <3


Re: Aimbots in my server - arakuta - 08.04.2014

I know I can't just block. But need a efficient tool to at least detect it precisely.


Re: Aimbots in my server - AssMunchingFool - 08.04.2014

just hire admins that will spectate constantly..


Re: Aimbots in my server - UncleBens - 08.04.2014

Yeah-... there is no tool to detect it ... just have admins that know hacks / aimbots.


Re: Aimbots in my server - Binx - 08.04.2014

Hire the aimbotters.


Re: Aimbots in my server - Ari - 08.04.2014

Create a count in the global scope then plus when they get a kill, if they get a certain amount of kills without taking extensive damage send a warning.
pawn Код:
new aimbot_KillCheck[MAX_PLAYERS];

public OnPlayerDeath(playerid, killerid, reason)
{
    aimbot_KillCheck[killerid] ++;
    return 1;
}
There are no ways to "detect" as of yet, however there are ways (one of them I've listed) to check.