Thursday, 20 May 2021

Subway surfers offsets 2.17.2

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.

from iOSGods RSS Feed https://ift.tt/3fF7O7o

No comments:

Post a Comment