SA-MP Forums Archive
Anti Bunny Hop - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Anti Bunny Hop (/showthread.php?tid=179301)



Anti Bunny Hop - rati555 - 26.09.2010

anywhone can help me i need anti bunny hop For RolePlay Server


Re: Anti Bunny Hop - [4k]Wang - 26.09.2010

Theres alot of premade FS's and scripts that have it in just try rip one out of them it would save you alot of time unless you actully want to learn then add me on MSN sockets@hotmail.co.uk or PM me i will help you.


Re: Anti Bunny Hop - Claude - 26.09.2010

pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if((newkeys & KEY_JUMP))
    {
        return 0;
    }
    return 1;
}