Jump to content

3 posts in this topic

Recommended Posts

Posted

In shmoo's tutorial on dealing with vectors he said a little about unlinking mine and enemy health.

Here's what he said

 

1. Set a breakpoint on your offset.

2. Let the enemy hit you, and your breakpoint should hit. Now type "bt", which means "backtrace". Copy the backtrace onto notepad or something convienent and label it "my health backtrace".

3. Now continue, but this time you hurt the enemy, and your breakpoint should hit. Do a backtrace again and copy it onto notepad and label it "enemy health backtrace".

4. See which frame first differs between the two backtraces (you'll know what I mean by frame when you backtrace) and NOP the branch that connects them.

So I've copied down both of the backtraces and I cant find any differences.

Can anyone spot the difference?

My Health Backtrace
* thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 7.1
  * frame #0: 0x000000010036a208 battleplans`_mh_execute_header + 2793992
    frame #1: 0x0000000100424fbc battleplans`_mh_execute_header + 3559356
    frame #2: 0x0000000100dd0b34 battleplans`_mh_execute_header + 13699892
    frame #3: 0x0000000101761e04 battleplans`plcrash::async::dwarf_cfa_state_iterator<unsigned long long, long long>::next(unsigned int*, plcrash::async::plcrash_dwarf_cfa_reg_rule_t*, unsigned long long*) + 1512316
    frame #4: 0x000000010101bf2c battleplans`_mh_execute_header + 16105260
    frame #5: 0x000000010101bef8 battleplans`_mh_execute_header + 16105208
    frame #6: 0x000000010100fe84 battleplans`_mh_execute_header + 16055940
    frame #7: 0x0000000100eced14 battleplans`_mh_execute_header + 14740756
    frame #8: 0x0000000100fc9288 battleplans`_mh_execute_header + 15766152
    frame #9: 0x000000010127e9bc battleplans`_mh_execute_header + 18606524
    frame #10: 0x00000001000ccd9c battleplans`_mh_execute_header + 52636
    frame #11: 0x00000001000ccc98 battleplans`_mh_execute_header + 52376
    frame #12: 0x000000018c0d2f24 QuartzCore`CA::Display::DisplayLinkItem::dispatch(unsigned long long) + 44
    frame #13: 0x000000018c0d2dd0 QuartzCore`CA::Display::DisplayLink::dispatch_items(unsigned long long, unsigned long long, unsigned long long) + 444
    frame #14: 0x00000001890ea094 IOKit`IODispatchCalloutFromCFMessage + 372
    frame #15: 0x0000000188e12e50 CoreFoundation`__CFMachPortPerform + 180
    frame #16: 0x0000000188e2b218 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 56
    frame #17: 0x0000000188e2a9cc CoreFoundation`__CFRunLoopDoSource1 + 436
    frame #18: 0x0000000188e284b0 CoreFoundation`__CFRunLoopRun + 1840
    frame #19: 0x0000000188d562b8 CoreFoundation`CFRunLoopRunSpecific + 444
    frame #20: 0x000000018a80a198 GraphicsServices`GSEventRunModal + 180
    frame #21: 0x000000018ed9d7fc UIKit`-[UIApplication _run] + 684
    frame #22: 0x000000018ed98534 UIKit`UIApplicationMain + 208
    frame #23: 0x00000001000c6a6c battleplans`_mh_execute_header + 27244
    frame #24: 0x0000000187d395b8 libdyld.dylib`start + 4
Enemy Health Backtrace
* thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 7.1
  * frame #0: 0x000000010036a208 battleplans`_mh_execute_header + 2793992
    frame #1: 0x0000000100424fbc battleplans`_mh_execute_header + 3559356
    frame #2: 0x0000000100dd0b34 battleplans`_mh_execute_header + 13699892
    frame #3: 0x0000000101761e04 battleplans`plcrash::async::dwarf_cfa_state_iterator<unsigned long long, long long>::next(unsigned int*, plcrash::async::plcrash_dwarf_cfa_reg_rule_t*, unsigned long long*) + 1512316
    frame #4: 0x000000010101bf2c battleplans`_mh_execute_header + 16105260
    frame #5: 0x000000010101bef8 battleplans`_mh_execute_header + 16105208
    frame #6: 0x000000010100fe84 battleplans`_mh_execute_header + 16055940
    frame #7: 0x0000000100eced14 battleplans`_mh_execute_header + 14740756
    frame #8: 0x0000000100fc9288 battleplans`_mh_execute_header + 15766152
    frame #9: 0x000000010127e9bc battleplans`_mh_execute_header + 18606524
    frame #10: 0x00000001000ccd9c battleplans`_mh_execute_header + 52636
    frame #11: 0x00000001000ccc98 battleplans`_mh_execute_header + 52376
    frame #12: 0x000000018c0d2f24 QuartzCore`CA::Display::DisplayLinkItem::dispatch(unsigned long long) + 44
    frame #13: 0x000000018c0d2dd0 QuartzCore`CA::Display::DisplayLink::dispatch_items(unsigned long long, unsigned long long, unsigned long long) + 444
    frame #14: 0x00000001890ea094 IOKit`IODispatchCalloutFromCFMessage + 372
    frame #15: 0x0000000188e12e50 CoreFoundation`__CFMachPortPerform + 180
    frame #16: 0x0000000188e2b218 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 56
    frame #17: 0x0000000188e2a9cc CoreFoundation`__CFRunLoopDoSource1 + 436
    frame #18: 0x0000000188e284b0 CoreFoundation`__CFRunLoopRun + 1840
    frame #19: 0x0000000188d562b8 CoreFoundation`CFRunLoopRunSpecific + 444
    frame #20: 0x000000018a80a198 GraphicsServices`GSEventRunModal + 180
    frame #21: 0x000000018ed9d7fc UIKit`-[UIApplication _run] + 684
    frame #22: 0x000000018ed98534 UIKit`UIApplicationMain + 208
    frame #23: 0x00000001000c6a6c battleplans`_mh_execute_header + 27244
    frame #24: 0x0000000187d395b8 libdyld.dylib`start + 4

Nevermind finding the difference, there is no difference, so how can I unlink my health and enemy health then?

Posted
Just now, Zimon said:

There is no difference

That's why I'm confused, there's supposed to be a difference :(

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
  • Our picks

    • Crazy Kick! Fun Football game v2.43.0 [ +2 APK MOD ] Currency Max
      Mod APK Game Name: Crazy Kick! Fun Football game
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.orbitalknight.ridiculousfreekick&hl=en

       

      🤩 Hack Features

      - Auto ADS No
      - Unlimited Coins

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 0 replies
    • Crazy Kick! Fun Football game v2.43.0 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Crazy Kick! Fun Football game By Voodoo
      Bundle ID: com.orbitalknight.ridiculousfreekick
      App Store Link: https://apps.apple.com/us/app/crazy-kick-fun-football-game/id1469889140?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Auto ADS No
      - Unlimited Coins

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb hack file from the link above. Use Safari, Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 0 replies
    • Crazy Kick! Fun Football game v2.43.0 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Crazy Kick! Fun Football game By Voodoo
      Bundle ID: com.orbitalknight.ridiculousfreekick
      App Store Link: https://apps.apple.com/us/app/crazy-kick-fun-football-game/id1469889140?uo=4

      🤩 Hack Features

      - Auto ADS No
      - Unlimited Coins
      • 0 replies
    • Super Goal: Fun Soccer Game v0.2.39 [ +2 APK MOD ] Currency Max
      Mod APK Game Name: Super Goal: Fun Soccer Game
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.soccer.football.kick&hl=en

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Coins

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 0 replies
    • Super Goal: Fun Soccer Game v1.6.8 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Super Goal: Fun Soccer Game By Gamegou Limited
      Bundle ID: com.soccer.football.kick.crazy
      App Store Link: https://apps.apple.com/us/app/super-goal-fun-soccer-game/id1612182545?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Coins

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb hack file from the link above. Use Safari, Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 1 reply
    • Super Goal: Fun Soccer Game v1.6.8 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Super Goal: Fun Soccer Game By Gamegou Limited
      Bundle ID: com.soccer.football.kick.crazy
      App Store Link: https://apps.apple.com/us/app/super-goal-fun-soccer-game/id1612182545?uo=4

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Coins
      • 0 replies
    • (Jujutsu Kaisen: Phantom Parade) 呪術廻戦 ファントムパレード +5 Cheats
      Mod APK Game Name: 呪術廻戦 ファントムパレード By Sumzap Inc.
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=jp.co.sumzap.pj0014

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Unlimited BP
      - Unlimited EN
      - Special Skill Always Active

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      Download via the iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 1 reply
    • Star Blaster Offline Roguelike +2++ Mods [ Unlimited Currencies ]
      Mod APK Game Name: Star Blaster Offline Roguelike By Enigma Publishing Limited
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.starblaster.atwo.epl.gp

       

      🤩 Hack Features

      - Unlimited Currencies
      - Freeze Currencies
      • 0 replies
    • Grand Hotel Mania +1++ Mod [ Unlimited Lives ]
      Mod APK Game Name: Grand Hotel Mania By DeusCraft
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.deuscraft.TurboTeam

       

      🤩 Hack Features

      - Unlimited Lives
      • 0 replies
    • Grand Hotel Mania +1 Jailed Cheat [ Unlimited Lives ]
      Modded/Hacked App: Grand Hotel Mania By DCGamePub Limited
      Bundle ID: com.deuscraft.TurboTeam
      App Store Link: https://apps.apple.com/us/app/grand-hotel-mania-my-manager/id1505041919?uo=4

       


      🤩 Hack Features

      - Unlimited Lives
      • 0 replies
    • Heavenfall Arena +1++ Mod [ Unlimited Currencies ]
      Mod APK Game Name: Heavenfall Arena By Gamee Global
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.gamee.heavenfall.arena.idle.rpg.journey.summon.heroes.strategy

       

      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      • 0 replies
    • Pond Pals +1++ Mod [ Unlimited Currencies ]
      Mod APK Game Name: Pond Pals By HyperBeard
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.hyperbeard.pondpals

       

      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      • 3 replies
×
  • 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