Jump to content

4 posts in this topic

Recommended Posts

Updated (edited)

Infinite Jump - 0x183BF08

patch with : 0xE003271EC0035FD6

 

jump height : 0x183A4A4

use slider again or mess around with values and patch

float(*old_get_JumpHeight)(void *this_);
float get_JumpHeight(void *this_) {

  float userAmount = [[switches getValueFromSwitch:@"Custom Jump Height"] floatValue];

  if([switches isSwitchOn:@"Custom Jump Height"]) {
    return userAmount;
  }
  return old_get_JumpHeight(this_);
}

void setup() {

  //public float get_JumpHeight(); // RVA: 0x183A4A4 Offset: 0x183A4A4
  HOOK(0x183A4A4, get_JumpHeight, old_get_JumpHeight);

 

  // Slider Switch - used in hooking
  [switches addSliderSwitch:@"Custom Jump Height"
              description:@"Set your custom jump height"
                minimumValue:0.5
                  maximumValue:1000
                    sliderColor:UIColorFromHex(0xBD0000)];

}

should work

 

gravity : 0x1838864

Use a slider again:

float(*old_get_Gravity)(void *this_);
float get_Gravity(void *this_) {

  float userAmount = [[switches getValueFromSwitch:@"Custom Gravity"] floatValue];

  if([switches isSwitchOn:@"Custom Gravity"]) {
    return userAmount;
  }
  return old_get_Gravity(this_);
}

void setup() {

  //public int get_Gravity(); // RVA: 0x1838864 Offset: 0x1838864
  HOOK(0x1838864, get_Gravity, old_get_Gravity);

 

  // Slider Switch - used in hooking
  [switches addSliderSwitch:@"Custom Gravity"
              description:@"Set your custom gravity level"
                minimumValue:-500
                  maximumValue:-0.5
                    sliderColor:UIColorFromHex(0xBD0000)];

}

 

godmode: 0x183E179, 0x183E740

patch both these with 20008052C0035FD6 or 00008053C0035FD6, one or other.

 

i have many others, if you need i can add

 

if something is not working then pm me.

 

Updated by Jacksonlane24
  • Like 6
  • Agree 1
  • Informative 1
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines