Jump to content
    1. Welcome to GTAForums!

    1. GTANet.com

    1. GTA Online

      1. Los Santos Drug Wars
      2. Updates
      3. Find Lobbies & Players
      4. Guides & Strategies
      5. Vehicles
      6. Content Creator
      7. Help & Support
    2. Red Dead Online

      1. Blood Money
      2. Frontier Pursuits
      3. Find Lobbies & Outlaws
      4. Help & Support
    3. Crews

    1. Grand Theft Auto Series

      1. Bugs*
      2. St. Andrews Cathedral
    2. GTA VI

    3. GTA V

      1. Guides & Strategies
      2. Help & Support
    4. GTA IV

      1. The Lost and Damned
      2. The Ballad of Gay Tony
      3. Guides & Strategies
      4. Help & Support
    5. GTA San Andreas

      1. Classic GTA SA
      2. Guides & Strategies
      3. Help & Support
    6. GTA Vice City

      1. Classic GTA VC
      2. Guides & Strategies
      3. Help & Support
    7. GTA III

      1. Classic GTA III
      2. Guides & Strategies
      3. Help & Support
    8. Portable Games

      1. GTA Chinatown Wars
      2. GTA Vice City Stories
      3. GTA Liberty City Stories
    9. Top-Down Games

      1. GTA Advance
      2. GTA 2
      3. GTA
    1. Red Dead Redemption 2

      1. PC
      2. Help & Support
    2. Red Dead Redemption

    1. GTA Mods

      1. GTA V
      2. GTA IV
      3. GTA III, VC & SA
      4. Tutorials
    2. Red Dead Mods

      1. Documentation
    3. Mod Showroom

      1. Scripts & Plugins
      2. Maps
      3. Total Conversions
      4. Vehicles
      5. Textures
      6. Characters
      7. Tools
      8. Other
      9. Workshop
    4. Featured Mods

      1. Design Your Own Mission
      2. OpenIV
      3. GTA: Underground
      4. GTA: Liberty City
      5. GTA: State of Liberty
    1. Rockstar Games

    2. Rockstar Collectors

    1. Off-Topic

      1. General Chat
      2. Gaming
      3. Technology
      4. Movies & TV
      5. Music
      6. Sports
      7. Vehicles
    2. Expression

      1. Graphics / Visual Arts
      2. GFX Requests & Tutorials
      3. Writers' Discussion
      4. Debates & Discussion
    1. Announcements

    2. Support

    3. Suggestions

Happy Holidays from the GTANet team!

Unlimited height on the jetpack


op9080
 Share

Recommended Posts

Now I'm happy.

 

Address 0x8703D8 - float constant, maximum height of the jetpack

Unit: meter

Value: 100

Notes:

  • The height is relative to ground, not an absolute height.
  • You actually get about 20 more meters because there's some code there to stop you gradually when you cross the limit.
  • This constant is not shared by any other code, so it's safe to change.
Code that checks the limit:
0067F260: D8 5D 08            fcomp       dword ptr [ebp+8]0067F263: DF E0               fnstsw      ax0067F265: F6 C4 05            test        ah,50067F268: 7A 47               jp          0067F2B1

 

How to remove:

Change byte at 0x67F268 from 0x7A to 0xEB to change it to an unconditional jmp and ignore the test.

 

hoodlum file address: 0x27E668

EU version: same

Link to comment
Share on other sites

omg op9080 your are a god, how you find allt his out, this is goign onto my sa loader straight away,
Link to comment
Share on other sites

cleary ure user title dosenot speak the truth tounge.gif

 

i have a gta sa loader that atm removes the hydra topspeed and now ive added this to it so im going to test soon

 

if it works ill send it to u

Link to comment
Share on other sites

adam schiller

hmm this is already been in deviouses trainer for ages sorry m8.But if you could be able to parachute from that height that would be awesome or make planes to have unlimited height.

Link to comment
Share on other sites

There's no problem parachuting from that height. I jumped from Liberty City and the parachute worked as usual.

 

Unlimited height on aircraft:

 

Address 0x8594DC - float constant, maximum height of aircraft

Unit: meter

Value: 800

 

Code that checks the limit:

 006D2612: D8 1D DC 94 85 00  fcomp       dword ptr ds:[008594DCh] 006D2618: DF E0              fnstsw      ax 006D261A: F6 C4 05           test        ah,5 006D261D: 7B 1E              jnp         006D263D

 

How to remove:

Change byte at 0x6D261D from 0x7B to 0xEB to change it to an unconditional jmp and ignore the test.

 

hoodlum file address: 0x2D1A1D

EU version: same

 

I tested the Hydra & the Hunter, parachuted from the Hydra from a height of 3012 meters - no problem.

I didn't check if this applies to flying cars. Maybe someone else wants to do the honors.

Edited by op9080
Link to comment
Share on other sites

should do all u do is run it and it will start up sa and apply the settings

im just working on an interface for it and then ill upload ok

Link to comment
Share on other sites

To people writing loaders:

  • For doing the patch in-process, use VirtualProtect() + store the byte.
  • For doing the patch remotely use VirtualProtectEx() + WriteProcessMemory().
  • If you're trying to patch the bona fide encrypted exe, you can't just do it by creating a suspended process, patching and then resuming it. The exe decrypts its code & constant sections during the first few seconds. The patch needs to be done after the decryption. So you have to insert a delay and let it run for awhile. The best thing to do is to make a loop that does something like - a) wait 5 seconds, b) read a block of code from the code section and compare it to an uncrypted version of the block you've previously extracted. c) If it's been decrypted, go ahead and patch. Otherwise, repeat the loop.
Link to comment
Share on other sites

ahh, VirtualProtectEx... forgot about that suicidal.gif (i do everything inprocess now) (rewrites loader w/ that and a sleep())

Edited by TonyB.
Link to comment
Share on other sites

  • 2 weeks later...

 

Edit: loader doesnt seem to work right (http://tony-b.net/loader2.exe)

 

(rewrites loader w/ that and a sleep())

By that do you mean that you've re-written the loader at http://tony-b.net/loader2.exe? Because I downloaded that and it doesn't work, there's still a limit on my jetpack and aircraft heights. Will it work on a hoodlum exe?

Link to comment
Share on other sites

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
 Share

  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.