Jump to content

GTA SA jump glitch


cheez3d

Recommended Posts

  • Moderators
Posted

By cancelling the damage.

What is the damage type?

and in combination with checking the tasks:

https://wiki.multitheftauto.com/wiki/Li ... ayer_tasks

Do you want to improve your Lua programming skills and make less mistakes?   Start with Lua Language Server!   🙀

 

  Useful functions  3x 

  Tutorials  4x 

 

Posted

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

If you find my post useful or if it helped you, please like my post :)
Ingame name: ZoeN

560x95_FFFFFF_FF9900_000000_000000.png

Posted
  
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 
) 
  

tell Obbe it happened again

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...