SA-MP Forums Archive
Help me friends - 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: Help me friends (/showthread.php?tid=439378)



Help me friends - XBossX - 25.05.2013

http://pastebin.com/KJ2hBmix#
how to change the crouch key to other keys because when i want to crouch its just like im playing basketball


Re: Help me friends - mahdi499 - 25.05.2013

pawn Код:
if ((newkeys & KEY_CROUCH) && !(oldkeys & KEY_CROUCH) && !IsPlayerInAnyVehicle(playerid))
        {
                if(HavingBall[playerid])
                {
            ApplyAnimation(playerid,"BSKTBALL","BBALL_idleloop",4.1,1,1,1,1,1);
                }
                else
                {
            ApplyAnimation(playerid,"BSKTBALL","BBALL_def_loop",4.0,1,0,0,0,0);
                }
                Anim[playerid] = 1;
        }
        if (!(newkeys & KEY_CROUCH) && (oldkeys & KEY_CROUCH) && !IsPlayerInAnyVehicle(playerid))
        {
                ClearAnimations(playerid);
                Anim[playerid] = 0;
        }
Change Key Crouch to what you want from the keys.


Re: Help me friends - XBossX - 25.05.2013

thanks dude plus 1 reps for you helpfull