Jump to content

[NIC] iOS Mod Menu Template - iOS 15 Supported!


162 posts in this topic

Recommended Posts

Posted (edited)

Can any1 help me, I'm looking for a way to make a button or an empty switch inside the mod menu, and by  clicking on it to call a function e.g.

void(*ctor)(void *instance)= (void(*) (void *))getRealOffset(0x135CDD8);

on that button\switch click I want it to execute ctor(instance);

and I cant seem to find a way to do it

Updated by n1ce0n3
Posted
[switches addOffsetSwitch:@"One Hit Kill"
              description:@"Enemy will die instantly!"
                offsets:{0x1001BB2C0, 0x1002CB3B0}
                  bytes:{0x00E0BF12C0035FD6, 0xC0035FD6}];

what is bytes @Ted2 ? i added you in Discord but not Accept :(

Posted
1 hour ago, Leeberlin said:

[switches addOffsetSwitch:@"One Hit Kill"
              description:@"Enemy will die instantly!"
                offsets:{0x1001BB2C0, 0x1002CB3B0}
                  bytes:{0x00E0BF12C0035FD6, 0xC0035FD6}];

what is bytes @Ted2 ? i added you in Discord but not Accept :(

use armconverter to get bytes

Posted (edited)
3 hours ago, Leeberlin said:

[switches addOffsetSwitch:@"One Hit Kill"
              description:@"Enemy will die instantly!"
                offsets:{0x1001BB2C0, 0x1002CB3B0}
                  bytes:{0x00E0BF12C0035FD6, 0xC0035FD6}];

what is bytes @Ted2 ? i added you in Discord but not Accept :(

As ted2 said its what u get from armconverter.

example :

You want to RET a fonction (that the fonction dose not happen), in arm converter you would type :

RET --> C0035FD6 // This is the RET fonction in HEX/BYTES that arm converter will send u

So, now that we know the bytes of our "RET" we will patch the offset that u got from IDA / lldb or anywhere

[switches addOffsetSwitch:@"One Hit Kill"
              description:@"Enemy will die instantly!"
                offsets:{0x1001BB2C0} // adress of IDA or anuwhere you got
                  bytes:{0xC0035FD6}]; // the bytes u got from armconverter.com

// So, the fonction at 0x1001BB2C0 will be "delete" by our 0xC0035FD6 (RET)
see arm knloegde here
Updated by D red

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
×
  • 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