OnFoot Crash - 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: OnFoot Crash (
/showthread.php?tid=457264)
OnFoot Crash -
lordturhan - 10.08.2013
Hey there is a guy at our server which uses this method to crash people and i found some threads working on this but i don't seem to trust them or they are in Russian.
So if somebody has something like this that actually works and protects the server i would be glad if they post it here.
Thanks.
EDIT: Something like this:
https://sampforum.blast.hk/showthread.php?tid=452274
And this:
http://forum.sa-mp.com/showthread.ph...eraFrontVector
Re: OnFoot Crash -
dEcooR - 11.08.2013
I hope that both will works properly
Re: OnFoot Crash -
BullseyeHawk - 11.08.2013
Quickest way to detect if he tries to crash you is:
pawn Код:
OnPlayerUpdate(playerid)
{
new cm = GetPlayerCameraMode(playerid);
if(cm == 184) { Kick(playerid); } // "Bug Abuse" - OnFootCrasher exploit fix.
}
That should fix your problem..
Re: OnFoot Crash -
lordturhan - 12.08.2013
Aight i will try the one above thanks!