Jump to content

confusion99

Newbie
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 12
  • iOS Version
    16.0.1
  • Jailbroken
    No

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

confusion99's Achievements

Newbie

Newbie (1/14)

  • Conversation Starter
  • First Post

Recent Badges

1

Reputation

  1. How can I hook a private void offset through hooking in an lgl mod menu for android? (private void) I have an iphone but I'm attempting for an android. the offset is 0xD45BC0. I was using a mod menu by nepmods that originally that had me just type in the offset and an update offset under a hook void offset setting. I was using an update that updated a class for stats (the void is not related to this update, but it worked). That update offset was 0x95F740C. is there a way to still update the void offset with that class update offset? And possibly place it into the menu itself.. I'd be grateful for a solution, This is how I put it into the menu, but it didn't work. I've also tried 1 and 0 instead of true and false, but that didn't work either. I've looked all over google and YouTube but I cannot find anything. thanks! --- void (*old_changeHeart)(void *instance); void changeHeart1(void *instance) { if (instance != NULL) { if (isHeart) { *(bool *)((uint64_t)instance + 0xD45BC0) = true; } } old_changeHeart(instance); } --- A64HookFunction((void *)getAbsoluteAddress("libil2cpp.so", 0x95F740C), (void *)changeHeart1, (void **)&old_changeHeart);
  2. @Parxdy how can I hook a void offset through hooking in an lgl mod menu for android? (private void) I have an iphone but I'm attempting for an android. the offset is 0xD45BC0. I was using a mod menu by nepmods that originally that had me just type in the offset and an update offset under a hook void offset setting. I was using an update that updated a class for stats. That update offset was 0x95F740C. is there a way to still update the void offset with that class update offset? And possibly place it into the menu itself.. I'd be grateful for a solution, This is how I put it into the menu, but it didn't work. I've also tried 1 and 0 instead of true and false, but that didn't work either. I've looked all over google and YouTube but I cannot find anything. thanks! --- void (*old_changeHeart)(void *instance); void changeHeart1(void *instance) { if (instance != NULL) { if (isHeart) { *(bool *)((uint64_t)instance + 0xD45BC0) = true; } } old_changeHeart(instance); } --- A64HookFunction((void *)getAbsoluteAddress("libil2cpp.so", 0x95F740C), (void *)changeHeart1, (void **)&old_changeHeart);
×
  • 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