Jump to content

GTA SA jump glitch


cheez3d

Recommended Posts

i think that gta sa bug occurs when u have 2 objects close to each other on which you can climb on and when u jump u actually start climbing on both of them and your height coordinate(z) gets bugged like if you were in air and falling down and you die due to fall damage

Link to comment
  
addEventHandler("onClientPlayerDamage", localPlayer, 
    function(attacker, weapon, bodypart) 
        if not attacker and weapon == 54 and bodypart == 3 then 
            local task = {} 
            task[1], task[2], task[3] = getPedTask(localPlayer, "primary", 3) 
            if task[1] == "TASK_COMPLEX_JUMP" and task[2] == "TASK_COMPLEX_IN_AIR_AND_LAND" and task[3] == "TASK_SIMPLE_CLIMB" then 
                cancelEvent() 
            end 
        end 
    end 
) 
  

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...