Jump to content

1 post in this topic

Recommended Posts

Posted

I am beginner and I am trying to hack the game Pocket Mortys, the game is like pokemon where IVs are randomly generated from 1-16. I want to hack this part of the game but I haven't been successful. I've loaded up the game into IDA and found the code for the function that generates these IV's, here it is

MortyData$$GenerateIVs                  ; CODE XREF: MortyData$$.ctor:loc_2690A8↑p
il2cpp:000000000026A9C4                                         ; DATA XREF: __data:000000000317E3B8↓o
il2cpp:000000000026A9C4
il2cpp:000000000026A9C4 var_20          = -0x20
il2cpp:000000000026A9C4 var_10          = -0x10
il2cpp:000000000026A9C4 var_s0          =  0
il2cpp:000000000026A9C4
il2cpp:000000000026A9C4                 STP             X22, X21, [SP,#-0x10+var_20]!
il2cpp:000000000026A9C8                 STP             X20, X19, [SP,#0x20+var_10]
il2cpp:000000000026A9CC                 STP             X29, X30, [SP,#0x20+var_s0]
il2cpp:000000000026A9D0                 ADD             X29, SP, #0x20
il2cpp:000000000026A9D4                 MOV             X20, X2
il2cpp:000000000026A9D8                 MOV             X21, X1
il2cpp:000000000026A9DC                 MOV             X19, X0
il2cpp:000000000026A9E0                 ADRP            X22, #byte_3357212@PAGE
il2cpp:000000000026A9E4                 LDRB            W8, [X22,#byte_3357212@PAGEOFF]
il2cpp:000000000026A9E8                 TBNZ            W8, #0, loc_26AA00
il2cpp:000000000026A9EC                 ADRL            X0, StringLiteral_7959 ; MortyDefault
il2cpp:000000000026A9F4                 BL              sub_25F7DF4
il2cpp:000000000026A9F8                 MOV             W8, #1
il2cpp:000000000026A9FC                 STRB            W8, [X22,#byte_3357212@PAGEOFF]
il2cpp:000000000026AA00
il2cpp:000000000026AA00 loc_26AA00                              ; CODE XREF: MortyData$$GenerateIVs+24↑j
il2cpp:000000000026AA00                 LDR             X0, [X19,#0x10]
il2cpp:000000000026AA04                 CBZ             X0, loc_26AAA8
il2cpp:000000000026AA08                 ADRL            X8, StringLiteral_7959 ; MortyDefault
il2cpp:000000000026AA10                 LDR             X1, [X8] ; MortyDefault
il2cpp:000000000026AA14                 MOV             X2, #0
il2cpp:000000000026AA18                 BL              System.String$$Equals_17774564
il2cpp:000000000026AA1C                 CBZ             W0, loc_26AA2C
il2cpp:000000000026AA20                 STP             W20, W20, [X19,#0x54]
il2cpp:000000000026AA24                 MOV             X8, X20
il2cpp:000000000026AA28                 B               loc_26AA90
il2cpp:000000000026AA2C ; ---------------------------------------------------------------------------
il2cpp:000000000026AA2C
il2cpp:000000000026AA2C loc_26AA2C                              ; CODE XREF: MortyData$$GenerateIVs+58↑j
il2cpp:000000000026AA2C                 ADD             W20, W20, #1
il2cpp:000000000026AA30                 MOV             X0, X21
il2cpp:000000000026AA34                 MOV             X1, X20
il2cpp:000000000026AA38                 MOV             X2, #0
il2cpp:000000000026AA3C                 BL              UnityEngine.Random$$Range_16731460
il2cpp:000000000026AA40                 STR             W0, [X19,#0x54]
il2cpp:000000000026AA44                 MOV             X0, X21
il2cpp:000000000026AA48                 MOV             X1, X20
il2cpp:000000000026AA4C                 MOV             X2, #0
il2cpp:000000000026AA50                 BL              UnityEngine.Random$$Range_16731460
il2cpp:000000000026AA54                 STR             W0, [X19,#0x58]
il2cpp:000000000026AA58                 MOV             X0, X21
il2cpp:000000000026AA5C                 MOV             X1, X20
il2cpp:000000000026AA60                 MOV             X2, #0
il2cpp:000000000026AA64                 BL              UnityEngine.Random$$Range_16731460
il2cpp:000000000026AA68                 MOV             X20, X0
il2cpp:000000000026AA6C                 LDP             W8, W9, [X19,#0x54]
il2cpp:000000000026AA70                 ADD             W8, W8, W0
il2cpp:000000000026AA74                 ADD             W8, W8, W9
il2cpp:000000000026AA78                 MOV             W9, #0x55555556
il2cpp:000000000026AA80                 SMULL           X8, W8, W9
il2cpp:000000000026AA84                 LSR             X9, X8, #0x3F ; '?'
il2cpp:000000000026AA88                 LSR             X8, X8, #0x20 ; ' '
il2cpp:000000000026AA8C                 ADD             W8, W8, W9
il2cpp:000000000026AA90
il2cpp:000000000026AA90 loc_26AA90                              ; CODE XREF: MortyData$$GenerateIVs+64↑j
il2cpp:000000000026AA90                 STR             W20, [X19,#0x5C]
il2cpp:000000000026AA94                 STR             W8, [X19,#0x50]
il2cpp:000000000026AA98                 LDP             X29, X30, [SP,#0x20+var_s0]
il2cpp:000000000026AA9C                 LDP             X20, X19, [SP,#0x20+var_10]
il2cpp:000000000026AAA0                 LDP             X22, X21, [SP+0x20+var_20],#0x30
il2cpp:000000000026AAA4                 RET
il2cpp:000000000026AAA8 ; ---------------------------------------------------------------------------
il2cpp:000000000026AAA8
il2cpp:000000000026AAA8 loc_26AAA8                              ; CODE XREF: MortyData$$GenerateIVs+40↑j
il2cpp:000000000026AAA8                 BL              sub_25F7F08
il2cpp:000000000026AAA8 ; End of function MortyData$$GenerateIVs

I have tried the following: Changing the first two BL UnityEngine.Random$$Range_16731460 functions to MOV W0, #16 and the third one to MOV X0, #16. I have done this using IGG's LIve Offset Patcher, and replacing the binary file with the modified one, in both occasions my game instantly crashes or after I turn the patches on in IGG.

After that didn't work I went to code for the function UnityEngine.Random$$Range_16731460, here it is

il2cpp:0000000000FF4D44 UnityEngine.Random$$Range_16731460      ; CODE XREF: AssetBundleDefs$$AppendPathWithAntiCache+50↑p
il2cpp:0000000000FF4D44                                         ; AudioController$$PlayRndSFX+EC↑p ...
il2cpp:0000000000FF4D44
il2cpp:0000000000FF4D44 var_20          = -0x20
il2cpp:0000000000FF4D44 var_10          = -0x10
il2cpp:0000000000FF4D44 var_s0          =  0
il2cpp:0000000000FF4D44
il2cpp:0000000000FF4D44                 STP             X22, X21, [SP,#-0x10+var_20]!
il2cpp:0000000000FF4D48                 STP             X20, X19, [SP,#0x20+var_10]
il2cpp:0000000000FF4D4C                 STP             X29, X30, [SP,#0x20+var_s0]
il2cpp:0000000000FF4D50                 ADD             X29, SP, #0x20
il2cpp:0000000000FF4D54                 MOV             X19, X1
il2cpp:0000000000FF4D58                 MOV             X20, X0
il2cpp:0000000000FF4D5C                 ADRP            X21, #qword_335E128@PAGE
il2cpp:0000000000FF4D60                 LDR             X2, [X21,#qword_335E128@PAGEOFF]
il2cpp:0000000000FF4D64                 CBNZ            X2, loc_FF4D7C
il2cpp:0000000000FF4D68                 ADRL            X0, aUnityengineRan_0 ; "UnityEngine.Random::RandomRangeInt(Syst"...
il2cpp:0000000000FF4D70                 BL              sub_25F7DAC
il2cpp:0000000000FF4D74                 MOV             X2, X0
il2cpp:0000000000FF4D78                 STR             X0, [X21,#qword_335E128@PAGEOFF]
il2cpp:0000000000FF4D7C
il2cpp:0000000000FF4D7C loc_FF4D7C                              ; CODE XREF: UnityEngine.Random$$Range_16731460+20↑j
il2cpp:0000000000FF4D7C                 MOV             X0, X20
il2cpp:0000000000FF4D80                 MOV             X1, X19
il2cpp:0000000000FF4D84                 LDP             X29, X30, [SP,#0x20+var_s0]
il2cpp:0000000000FF4D88                 LDP             X20, X19, [SP,#0x20+var_10]
il2cpp:0000000000FF4D8C                 LDP             X22, X21, [SP+0x20+var_20],#0x30
il2cpp:0000000000FF4D90                 BR              X2
il2cpp:0000000000FF4D90 ; End of function UnityEngine.Random$$Range_16731460

I really don't know what I can do to this function help me but here it is in case anyone has an idea. If anyone can help or if i'm doing something wrong please let me know!

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

    • SuperStar SMTOWN Cheats v3.26.8 +3
      Modded/Hacked App: SuperStar SMTOWN By Dalcomsoft Inc.
      Bundle ID: kr.co.dalcomsoft.superstar.i
      iTunes Store Link: https://apps.apple.com/us/app/superstar-smtown/id890937532?uo=4


      Hack Features:
      - Auto Dance
      - Never Lose Combo


      iOS Hack Download Link: https://iosgods.com/topic/161038-superstar-smtown-cheats-v378-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 198 replies
    • Soul Huntress: Dungeon Crawler v1.0.9 [+3 Jailed Cheats]
      Modded/Hacked App: Soul Huntress: Dungeon Crawler By Panthera Joint Stock Company
      Bundle ID: com.pantheraplay.soulhuntress
      App Store Link: https://apps.apple.com/ph/app/soul-huntress-dungeon-crawler/id6743422594?uo=4


      🤩 Hack Features

      - Never Die
      - Unlimited Currency (Always Will Increase Spend)
      - Always Can Use Items (Even when has cooldown)
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 33 replies
    • Soul Huntress: Dungeon Crawler v1.0.9 [+3 Cheats]
      Modded/Hacked App: Soul Huntress: Dungeon Crawler By Panthera Joint Stock Company
      Bundle ID: com.pantheraplay.soulhuntress
      App Store Link: https://apps.apple.com/ph/app/soul-huntress-dungeon-crawler/id6743422594?uo=4



      🤩 Hack Features

      - Never Die
      - Unlimited Currency (Always Will Increase Spend)
      - Always Can Use Items (Even when has cooldown)
        • Agree
        • Thanks
        • Winner
        • Like
      • 40 replies
    • Train Invasion v1.0 [ +1 Cheats ] Currency Max
      Modded/Hacked App: Train Invasion By Kiwert SPRL
      Bundle ID: com.kiwert.traininvasion
      App Store Link: https://apps.apple.com/ca/app/train-invasion/id6751881247?uo=4

      🤩 Hack Features

      - Unlimited Gold
        • Winner
      • 1 reply
    • Train Invasion v1.0 [ +1 Jailed ] Currency Max
      Modded/Hacked App: Train Invasion By Kiwert SPRL
      Bundle ID: com.kiwert.traininvasion
      App Store Link: https://apps.apple.com/ca/app/train-invasion/id6751881247?uo=4

      🤩 Hack Features

      - Unlimited Gold
        • Winner
      • 1 reply
    • (GODDESS OF VICTORY: NIKKE CHINA) 胜利女神:新的希望 v7.3.1 +4 Cheats
      Modded/Hacked App: 胜利女神:新的希望 By Shenzhen Tencent Tianyou Technology Ltd
      Bundle ID: com.tencent.nikke
      App Store Link: https://apps.apple.com/cn/app/%E8%83%9C%E5%88%A9%E5%A5%B3%E7%A5%9E-%E6%96%B0%E7%9A%84%E5%B8%8C%E6%9C%9B/id6467825646?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

      - Never Die
      - Unlimited Ammo
      - No Charge Time
      - Fire Rate Multiplier

       

      ⬇️ 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

      - AlyssaX64

       

      📷 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
    • (GODDESS OF VICTORY: NIKKE CHINA) 胜利女神:新的希望 v7.3.1 +4 Jailed Cheats
      Modded/Hacked App: 胜利女神:新的希望 By Shenzhen Tencent Tianyou Technology Ltd
      Bundle ID: com.tencent.nikke
      App Store Link: https://apps.apple.com/cn/app/%E8%83%9C%E5%88%A9%E5%A5%B3%E7%A5%9E-%E6%96%B0%E7%9A%84%E5%B8%8C%E6%9C%9B/id6467825646?uo=4

       

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Never Die
      - Unlimited Ammo
      - No Charge Time
      - Fire Rate Multiplier

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 8: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A
        • Like
      • 0 replies
    • Jobmania Eternal Dungeon v2.38.0 +3 Jailed Cheats
      Modded/Hacked App: Jobmania Eternal Dungeon By Aubrey Puan
      Bundle ID: com.aubjective.jobmania
      iTunes Store Link: https://apps.apple.com/us/app/jobmania-eternal-dungeon/id1643100440?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:
      - Damage Multiplier
      - Defense Multiplier
      - Add Currenies  → Battle → Market → Buy & Retreat


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Thanks
        • Winner
        • Like
      • 49 replies
    • Jobmania Eternal Dungeon v2.38.0 +3 Cheats
      Modded/Hacked App: Jobmania Eternal Dungeon By Aubrey Puan
      Bundle ID: com.aubjective.jobmania
      iTunes Store Link: https://apps.apple.com/us/app/jobmania-eternal-dungeon/id1643100440?uo=4


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


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Add Currenies  -> Battle -> Market -> Buy & Retreat
      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/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia 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 necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 65 replies
    • (State of Survival: Zombie War China) 曙光防线 v2.3.92 +2 Jailed Cheats
      Modded/Hacked App: 曙光防线 By Shanghai Zhimeng Technology Co., Ltd.
      Bundle ID: com.zmgames.ss.cn
      iTunes Store Link: https://apps.apple.com/cn/app/%E6%9B%99%E5%85%89%E9%98%B2%E7%BA%BF/id6478076019?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:
      - Damage Multiplier
      - Defense Multiplier


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Like
      • 20 replies
    • Merge Manor : Sunny House v1.3.42 +1 Jailed Cheat
      Modded/Hacked App: Merge Manor : Sunny House By NSTAGE Inc.
      Bundle ID: com.cookapps.interiors.home.design.merge.sunnyhouse
      iTunes Store Link: https://apps.apple.com/us/app/merge-manor-sunny-house/id1573861950?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:
      - Unlimited Currencies → Spend/Gain


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 49 replies
    • (State of Survival: Zombie War China) 曙光防线-忍者神龟联动 v2.3.92 +2 Cheats
      Modded/Hacked App: 曙光防线 By Shanghai Zhimeng Technology Co., Ltd.
      Bundle ID: com.zmgames.ss.cn
      iTunes Store Link: https://apps.apple.com/cn/app/%E6%9B%99%E5%85%89%E9%98%B2%E7%BA%BF/id6478076019?uo=4


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


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier


      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/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia 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 necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Like
      • 34 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