Jump to content

A Beginner-Friendly Guide to Modding iOS IPAs on Windows Only


7 posts in this topic

Recommended Posts

Updated (edited)

 

Part 2 of the tutorial is coming out soon! I'll be showing you the exact methods—the easiest ones—to help you hack your first game. Stay tuned, you're going to love it. Believe me!

Even someone with zero knowledge will be able to do it.

For now, you need to learn the basics below and get comfortable with everything. So take a moment and give it a read!




Beginner’s Guide: iOS IPA Modding Using Windows

( No Jailbreak – No Frida – Static Modding ) 
 

 

Important Note: This method is only for those who want to try modding on Windows. It’s not as powerful as some of the advanced tools you can use with a jailbroken iPhone. Also, it can be time-consuming if you don’t know what you’re doing at first—so keep that in mind before you start.

I don’t know how to attach pictures here, so sorry about that—lol.🤣🤣
 

 Tools and Files You Will Need:

Spoiler

  1:  Windows PC
    2:   IPA File of the Game
    3:   HxD (Hex Editor) – Free, Download Here: https://mh-nexus.de/en/hxd/

    4:   Il2CppDumper – Free, Download here:  https://github.com/Perfare/Il2CppDumper

    5:   Notepad++ – Free, Download here: https://notepad-plus-plus.org/downloads/

    6:   Sideloadly – Free, Download here: https://sideloadly.io/

    7:  Apple ID – Needed for signing apps with Sideloadly.
    8:   7-Zip – Free, 
    •    OR WinRAR –

 


 

Read These Things First :

What You Can Do with This Method:

Spoiler

    •    Modify offline iOS games that use Il2Cpp structure.
    •    Change game values like coins, health, damage.
    •    Disable unwanted features by changing hex codes.
    •    Perform Static Modding (editing the game’s static code).


What You Cannot Do with This Method:

Spoiler

   •    You cannot bypass server-sided checks.
    •    You cannot live test changes without reinstalling the app.
    •    You cannot bypass advanced anti-cheats with just this method.
    •    You cannot modify Swift-based or encrypted games easily.



Limitations of Windows-Only iOS Modding:

Spoiler

    •    No live testing: You must install the IPA every time you make changes to see if it works.
    •    No dynamic hooking: You cannot use tools like Frida without jailbreak or macOS.
    •    Trial and error required: You need to test several RVA addresses and hex edits repeatedly.
    •    More time-consuming: No instant result like Android modding with Frida.


What is Static Modding?

Spoiler

    •    This method is called Static Modding because:
    •    You are editing the compiled game files directly (libil2cpp.dylib) using a hex editor.
    •    The changes become part of the IPA permanently.
    •    You cannot dynamically change anything while the game is running.


Full Step-by-Step iOS IPA Modding Process Here We Goooooooooooooooooo

 

How to Download Decrypted IPA (Required for Modding:

Spoiler

When modding iOS games, you must have a decrypted IPA. Normal IPAs from the App Store are encrypted and cannot be modified.

 Method 1: Download from iOSGods (Decrypt Store)
    1.    Open your browser and go to:
👉 https://armconverter.com/decryptedappstore/us

    2.    This is the Decrypt Store by iOSGods.
    3.    You can search for the game you want. Example: “Subway Surfers” or any offline game.
    4.    Look for a decrypted version compatible with your iOS version. Download the IPA file directly to your PC.

 Notes About Decrypted IPAs:
    •    The decrypted IPA is already ready for modding.
    •    The encryption is removed, so you can extract it, edit, and resign it.
    •    If the game you want is not available, you may need to dump the IPA yourself from a jailbroken device.

 Why Decrypted IPAs Are Important:
    •    App Store IPAs are encrypted for security.
    •    Encrypted IPAs cannot be opened, dumped, or edited.
    •    Decrypted IPAs allow us to extract libil2cpp.dylib and global-metadata.dat for Il2CppDumper


Step 1: Prepare the IPA File

Spoiler

    •    Change .ipa to .zip.
    •    Extract it using 7-Zip or WinRAR.
    •    Go to: Payload → GameName.app
    •    Find these files:
    •    libil2cpp.dylib
    •    Data/global-metadata.dat


Step 2: Dump the Game

Spoiler

    •    Open Il2CppDumper.
    •    Load libil2cpp.dylib and global-metadata.dat.
    •    Wait for dump.cs file to generate.
    •    Save dump.cs safely. 

 
Step 3: Analyze dump.cs

Spoiler

    •    Open dump.cs in Notepad++.
    •    Search for keywords:
    •    coins, currency, gems, gold, health, damage, setHealth, addCoins, getCoins, etc.
    •    Write down the RVA (Example: 0x1D7280C) of suspected functions.


Step 4: Open Hex Editor

Spoiler

    •    Open libil2cpp.dylib in HxD.
    •    Go to: Search → Goto → Enter RVA address directly (remove the ‘0x’ part).
    •    This will bring you to the instruction in the hex.




Important****  

Spoiler

Step 5: Known iOS Hex Codes for Common Functions
    •    NOP (No Operation) → 00 00 → Used to skip instructions.
    •    True (MOV R0, #1) → 01 00 A0 E3 → Makes a condition always true.
    •    False (MOV R0, #0) → 00 00 A0 E3 → Makes a condition always false.
    •    BNE (Branch if Not Equal) → Change to BEQ (Branch if Equal) to reverse condition.
    •    Compare Instruction (CMP) → Sometimes you can remove this to disable checks.
    •    Add Value Example (ADD R0, R0, #1) → Change to higher numbers to increase gains.
    •    Subtract Instruction (SUB) → Try to NOP it to stop decreasing values.
    •    Jump (B instruction) → NOP a conditional jump to always pass.

👉 You need to understand patterns and compare similar functions to guess what to change. Justg Do alittle Research How it works ,


Step 6: Save Your Edits
    •    After editing in HxD, click Save.
    •    Do not corrupt the file size or structure.

Step 7: Repack the IPA

Spoiler

    •    Make sure the folder structure is correct:
    •    IPA → Payload → GameName.app → (all files here)
    •    Select the Payload folder → Zip it → Rename to .ipa.


Step 8: Resign the IPA

Spoiler

    •    Open Sideloadly.
    •    Load your modded IPA.
    •    Connect iPhone.
    •    Enter Apple ID → Start signing.
    •    Install the IPA.
    •    On iPhone → Go to Settings → General → Device Management → Trust your Apple ID.




Step 9: Test the Game
    •    Launch the game.
    •    See if your changes worked.
    •    If not, try other RVAs, other hex edits, or revisit dump.cs.


Important Notes Keeeeeeep Thisssssssss Innnnn Mindddddddd:  

Spoiler

    •    Each game is different; you may need to try many times. 
    •    Always backup original files before editing.
    •    You will fail several times before succeeding. Trial and error is the normal process.
    •    Static modding takes patience but works for many offline iOS games.
    •    If you don’t understand some parts, you can search on YouTube or Google, or ask in modding communities for help.



Warning Cause You Knowwww 👀👀👀👀:
    •    Do not attempt to mod server-sided games. Cuz You cant not Possible.
    •    Do not use this method on multiplayer or ranked games. Very Hard You have to Try and check tons of Stuff , Often tese games are completly server sided too .
    •    This guide is for educational and personal offline testing only. Yeahhhhhhh  


I Hope This Guide Can Help You Alittle And  I am still learning Myself too so If you have Any Questions Ask Here 



 

Updated by Aizen_
  • Like 4
  • Thanks 1
Posted (edited)
On 7/5/2025 at 11:19 PM, JhnSmith said:

Hey I cant Find Libil2cpp file inside ,?

Search inside UnityFramework folder
your main file here will be UnityFramework (Not libil2cpp )

Updated by Aizen_
Posted
On 7/6/2025 at 12:19 AM, JhnSmith said:

Hey I cant Find Libil2cpp file inside ,?

Hi there!

You'll be navigating to: Frameworks Folder> UnityFramework.framework Folder> Selecting "UnityFramework" file as the lib file he mentioned.

Afterwards, it's the global-metadata selection, then it takes a tiny dump called "dump.cs" which, yeah, follow his tutorial from there.

  • Thanks 1

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

    • Weapon Merge Battle v1.4 [ +3 Cheats ] Never Die
      Modded/Hacked App: Weapon Merge Battle By Rio Master DMCC
      Bundle ID: com.riomaster.weaponmerge
      App Store Link: https://apps.apple.com/ca/app/weapon-merge-battle/id6742321536?uo=4


      🤩 Hack Features

      - HP
      - ATK
      - DEF
      • 1 reply
    • Weapon Merge Battle v1.4 [ +3 Jailed ] Never Die
      Modded/Hacked App: Weapon Merge Battle By Rio Master DMCC
      Bundle ID: com.riomaster.weaponmerge
      App Store Link: https://apps.apple.com/ca/app/weapon-merge-battle/id6742321536?uo=4

       
      🤩 Hack Features

      - HP
      - ATK
      - DEF
      • 0 replies
    • Survive & Smash v1.2 [ +2 Cheats ] Never Die
      Modded/Hacked App: Survive & Smash By Beijing New Vision Real Estate Development Co., Ltd.
      Bundle ID: com.survive.smash.io
      App Store Link: https://apps.apple.com/ca/app/survive-smash/id6469017413?uo=4


      🤩 Hack Features

      - HP [ Upgrade & Reset ] Then Equip
      - DMG [ Upgrade & Reset ] Then Equip
      • 0 replies
    • Survive & Smash v1.2 [ +2 Jailed ] Never Die
      Modded/Hacked App: Survive & Smash By Beijing New Vision Real Estate Development Co., Ltd.
      Bundle ID: com.survive.smash.io
      App Store Link: https://apps.apple.com/ca/app/survive-smash/id6469017413?uo=4

      🤩 Hack Features

      - HP [ Upgrade & Reset ] Then Equip
      - DMG [ Upgrade & Reset ] Then Equip

      • 0 replies
    • Hunter Raid : Idle RPG v2.2.7 +5 Jailed Cheats
      Modded/Hacked App: Hunter Raid : Idle RPG By Gameberry Studio Inc
      Bundle ID: studio.gameberry.idlehunter
      iTunes Store Link: https://apps.apple.com/us/app/hunter-raid-idle-rpg/id1668807323?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
      - Unlimited MP
      - Freeze Currencies
      - 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
      • 161 replies
    • Hunter Raid : Idle RPG v2.2.7 +5 Cheats
      Modded/Hacked App: Hunter Raid : Idle RPG By Gameberry Studio Inc
      Bundle ID: studio.gameberry.idlehunter
      iTunes Store Link: https://apps.apple.com/us/app/hunter-raid-idle-rpg/id1668807323?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:
      - Damage Multiplier
      - Defense Multiplier
      - Unlimited MP


      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
      • 270 replies
    • No Limit Drag Racing 2 v2.4.143 +2 Cheats
      Modded/Hacked App: No Limit Drag Racing 2 By Zach Smith
      Bundle ID: com.battlecreek.nolimit2
      iTunes Store Link: https://apps.apple.com/us/app/no-limit-drag-racing-2/id1563031984?uo=4


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


      Hack Features:
      - Unlimited Gold
      - Unlimited Money


      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/


      iOS Hack Download 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 & then your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA.
      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 & 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: For free Apple Developer accounts, you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can also use Sideloadly to install the IPA with AppSync. Filza & IPA Installer (or alternatives) from Cydia also work. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, 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:
      - @Zahir


      Cheat Video/Screenshots:

      N/A
      • 553 replies
    • Bowmasters - Multiplayer Game v9.1.5 +5 Jailed Cheats
      Modded/Hacked App: Bowmasters - Multiplayer Game By Playgendary Limited
      Bundle ID: com.playgendary.bowmasters
      iTunes Store Link: https://apps.apple.com/us/app/bowmasters-multiplayer-game/id1118431695?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 Coins
      - Unlimited Gems
      - No Ads


      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
      • 170 replies
    • Underdark:Defense v2.9.6 +5 Jailed Cheats
      Modded/Hacked App: Underdark:Defense By SeungHo Chung
      Bundle ID: com.FreeDust.UnderDark
      iTunes Store Link: https://apps.apple.com/us/app/underdark-defense/id6482025287?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
      - Reward Mutliplier → Turn Off When You Get Enough
      - Always Last Wave
      - No Ads


      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
      • 146 replies
    • Underdark:Defense v2.9.6 +5 Cheats
      Modded/Hacked App: Underdark:Defense By SeungHo Chung
      Bundle ID: com.FreeDust.UnderDark
      iTunes Store Link: https://apps.apple.com/us/app/underdark-defense/id6482025287?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
      - Reward Mutliplier → Turn Off When You Get Enough
      - Always Last Wave
      - No Ads


      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
      • 129 replies
    • Bowmasters - Multiplayer Game v9.1.5 +5 Cheats
      Modded/Hacked App: Bowmasters - Multiplayer Game By Playgendary GmbH
      Bundle ID: com.playgendary.bowmasters
      iTunes Store Link: https://apps.apple.com/us/app/bowmasters-multiplayer-game/id1118431695?uo=4


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


      Hack Features:
      - Unlimited Coins
      - Unlimited Gems
      - No Ads


      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.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: 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 7: 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, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 280 replies
    • No Limit Drag Racing 2 v2.4.143 +2 Cheats
      Modded/Hacked App: No Limit Drag Racing 2 By Sycamore Valley Software LLC
      Bundle ID: com.battlecreek.nolimit2
      iTunes Store Link: https://apps.apple.com/us/app/no-limit-drag-racing-2/id1563031984?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:
      - Unlimited Gold
      - Unlimited Money


      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:
      - @Rook


      Cheat Video/Screenshots:

      N/A
      • 145 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