How to disable sky-dive or auto-parachutes?
-
I'm working with SHVDN and I want to disable sky-diving. IDK what happens, but if you have a parachute you kind of fall into a sky-dive. I have a 100% save so I think I automatically get parachutes which means i'm in constant sky-dive. Is it possible to disable the parachutes or sky-diving?
-
@AHK1221 I used this native in one of my scripts.
REMOVE_WEAPON_FROM_PED
This simply checks and removes the said weapon hash from ped.
So something like this in C#
Function.call(Hash.REMOVE_WEAPON_FROM_PED, Playerped, Weaponhash.parachute);
It simply removes the parachute and set player into free-fall state.
P.S. I am unsure if this is what you are looking for. Sorry, if you are not.