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

    • Tiny Defense - Tower Defense v0.5.0 [ +9 Cheats ] Currency Max
      Modded/Hacked App: Tiny Defense - Tower Defense By jeongwoo park
      Bundle ID: com.bumbloo.tinydefense
      App Store Link: https://apps.apple.com/us/app/tiny-defense-tower-defense/id6520386369?uo=4

       

      🤩 Hack Features

      - Gems

      - Coins

      - Energy

      - Battle Coins

      - Fingerprint Box Coins

      - Premium Box

      - Common Box

      - ATK

      - ATK Speed

      Disable Currency After Hack
        • Winner
        • Like
      • 12 replies
    • Tiny Defense - Tower Defense v0.5.0 [ +9 Jailed ] Currency Max
      Modded/Hacked App: Tiny Defense - Tower Defense By jeongwoo park
      Bundle ID: com.bumbloo.tinydefense
      App Store Link: https://apps.apple.com/us/app/tiny-defense-tower-defense/id6520386369?uo=4
       

      🤩 Hack Features

      - Gems

      - Coins

      - Energy

      - Battle Coins

      - Fingerprint Box Coins

      - Premium Box

      - Common Box

      - ATK

      - ATK Speed

      Disable Currency After Hack
        • Winner
        • Like
      • 9 replies
    • Medieval Merge v1.90.1 [Currency/SRDebug 99+ Options]
      Modded/Hacked App: Medieval Merge: Epic RPG Games By Pixodust Aplicativos LTDA
      Bundle ID: com.pixodust.games.free.rpg.medieval.merge.puzzle.empire
      iTunes Store Link: https://apps.apple.com/us/app/medieval-merge-epic-rpg-games/id1553126598?uo=4

      Hack Features:
      - SRDebugger 99+ Toggles
      Open IGMM first and enable "Open SRDebug" then open settings in game for the UI to popup  


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 180 replies
    • Brick Out - Shoot the ball v25.0702.01 +5 Jailed Cheats [Currency Hack]
      Modded/Hacked App: Brick Out - Shoot the ball By Puzzle1Studio,inc.
      Bundle ID: com.puzzle1studio.ap.brickoutshoottheball
      iTunes Store Link: https://apps.apple.com/us/app/brick-out-shoot-the-ball/id1489900957?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - No Ads
      - Free Revives


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 113 replies
    • Brick Out - Shoot the ball v25.0702.01 +5 [Currency Hack]
      Modded/Hacked App: Brick Out - Shoot the ball By Puzzle1Studio,inc.
      Bundle ID: com.puzzle1studio.ap.brickoutshoottheball
      iTunes Store Link: https://apps.apple.com/us/app/brick-out-shoot-the-ball/id1489900957?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - No Ads
      - Add 10000 Rubies
      - Free Revives


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 114 replies
    • State Connect: Traffic Control v1.145 +2 Jailed Cheats [SRDebugger]
      Modded/Hacked App: State Connect: Traffic Control By AI GAMES FZ LLC
      Bundle ID: state.connect.game
      iTunes Store Link: https://apps.apple.com/us/app/state-connect-traffic-control/id1590353335?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - No Ads Popup
      - Free Everything


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 33 replies
    • State Connect: Traffic Control v1.145 +3 [SRDebugger]
      Modded/Hacked App: State Connect: Traffic Control By AI GAMES FZ LLC
      Bundle ID: state.connect.game
      iTunes Store Link: https://apps.apple.com/us/app/state-connect-traffic-control/id1590353335?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - No Ads Popup
      - Free Everything


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 42 replies
    • Andy Volcano: Tile Match Story v1.5.9 +7 [OP Cheats]
      Modded/Hacked App: Andy Volcano: Tile Match Story By SayGames LTD
      Bundle ID: com.playstrom.tile.match
      iTunes Store Link: https://apps.apple.com/us/app/andy-volcano-tile-match-story/id1639080259?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Infinite Health
      - Infinite Coins
      - Infinite Stars
      - Infinite Gloves
      - Infinite Boomerangs
      - Infinite Propellers
      - Infinite Bombs


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Like
      • 20 replies
    • Andy Volcano: Tile Match Story v1.5.9 +7 [OP Cheats]
      Modded/Hacked App: Andy Volcano: Tile Match Story By SayGames LTD
      Bundle ID: com.playstrom.tile.match
      iTunes Store Link: https://apps.apple.com/us/app/andy-volcano-tile-match-story/id1639080259?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Infinite Health
      - Infinite Coins
      - Infinite Stars
      - Infinite Gloves
      - Infinite Boomerangs
      - Infinite Propellers
      - Infinite Bombs


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Agree
        • Like
      • 18 replies
    • Tetris v7.3.1 +3 Jailed Cheats [Freeze Falldown]
      Modded/Hacked App: Tetris® By Playstudios, Inc.
      Bundle ID: com.n3twork.tetris
      iTunes Store Link: https://apps.apple.com/us/app/tetris/id1491074310?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - No Ads
      - Freeze Falldown


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 64 replies
    • Tetris v7.3.1 +3 [Freeze Falldown]
      Modded/Hacked App: Tetris® By Playstudios, Inc.
      Bundle ID: com.n3twork.tetris
      iTunes Store Link: https://apps.apple.com/us/app/tetris/id1491074310?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - No Ads
      - Freeze Falldown


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 54 replies
    • Hole.io v2.27.10 [OVERPOWERED Debugger]
      Modded/Hacked App: Hole.io By Voodoo
      Bundle ID: com.nguyenvh.holeio
      iTunes Store Link: https://apps.apple.com/us/app/hole-io/id1389111413?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:

      Overpowered Debug Menu with Cheat Panel + more




      Click "Show Debug Button" in Mod Menu. Once enabled once you can delete the deb and the TestKit will still show up as this hack adds your DeviceUID to the Test Devices list. No need to open IGM when enabled once!






      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 159 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