Jump to content

[Tool] LibTool iOS v1.1.10 – IL2CPP Explorer, Runtime Editor, Lua, AI, ESP & Dumper


4 posts in this topic

Recommended Posts

Posted

LibTool iOS
Version: 1.1.10
Developer: HaoDam

Hello everyone, I am HaoDam.

Some time ago, I shared a Unity game modding utility called LibTool. The project was originally developed on Android. I have now rebuilt and expanded it for iOS, and today I would like to introduce the new version and show you how its main features work.

LibTool is not a mod menu made for one game. It is a runtime toolkit for exploring and testing Unity IL2CPP games directly inside the app.

JON4oZ9.jpeg

Video demo

Spoiler

Soul Knight Prequel FREE MOD – LibTool iOS (+4 Tools)
https://www.youtube.com/watch?v=UgaQXhLrv1g

LibTool iOS – Demo Tool AI Easy MOD
https://www.youtube.com/watch?v=PMwOCjOJv_A

Requirements

- iOS 13 or newer
- arm64 device/app
- Unity game using the IL2CPP backend
- Jailbroken device or a compatible decrypted-IPA tweak injection method
- For a jailed setup, inject the LibTool package into the IPA instead of using a normal jailbreak installation
- Internet connection is required only for the AI tab

What does it do?

Tools

- Browse all loaded IL2CPP images and classes
- Assembly-CSharp.dll is selected by default
- Open multiple class tabs with the + button
- Search by class, method or field
- View class metadata, parent classes, interfaces and generic information
- View static fields and methods
- Find live objects and inspect their values
- Read and write supported fields/properties
- Invoke methods with custom parameters
- Patch, redirect and trace methods at runtime

Filter examples

Quote

 

Wallet
Search for classes containing Wallet.

:GetCoins
Search for any class containing a GetCoins method.

Wallet:GetCoins
Search for a Wallet class that also contains GetCoins.

Wallet#coins
Search for a Wallet class containing a coins field.

^WalletModel$
Match the exact class name WalletModel.

 

Example: finding the real currency class

Quote

 

If the game displays 10,000 coins:

1. Search Wallet, Currency, Coin or Balance.
2. Open WalletModel and use Find Objects.
3. Inspect the live fields/properties.
4. Call GetCoins() if the method exists.
5. Compare the result with the 10,000 shown by the game.

If WalletModel.GetCoins() returns 10,000 while CurrencyView only contains text formatting, WalletModel is probably the real data owner. If the values do not match, continue searching instead of patching the first result.

 

Inspector

- Displays Field/Property, Value and Type columns
- Shows inherited fields
- Supports static and live instance objects
- Boolean values use a True/False selector
- Enums display their named constants
- Numeric and string values can be edited directly
- Object references can be opened and inspected deeper
- Back and Root buttons navigate the object graph
- Breadcrumb shows the current path
- Properties option enables managed property getters/setters
- Always Update refreshes values that change while the game runs
- Arrays can be opened by index
- List and Dictionary backing data can also be inspected
- Field metadata displays type, offset, reflection state and attributes
- ACTk/Obscured values receive safer handling instead of blindly editing hidden integrity fields

Example: inspecting inventory

1. Find a live PlayerInventory object.
2. Open the items/List field.
3. Open its _items array.
4. Select an element such as [0].
5. Inspect ItemData fields such as id, amount or rarity.

Caller

- Calls static or instance methods directly
- Instance methods require a valid this object
- Supports Boolean, enum, integer, float, double and string inputs
- Supports object and supported value-type parameters
- Supports ref/out parameters and displays their returned values
- Can run a method normally or on the main thread
- Call Count repeats a verified method several times
- Call Results displays return values, managed objects and exceptions

Example: calling a setter

If metadata confirms:

int GetCoins()
void SetCoins(int value)

1. Select the same live WalletModel object for both methods.
2. Call GetCoins() and record the BEFORE value.
3. Call SetCoins(999999).
4. Call GetCoins() again.
5. Verify the game UI.

A successful call is not enough. The AFTER value and the real UI should also change.

Patcher

- Automatically reads the method return type
- Supports Boolean and integer return patches
- Supports float, string, enum and BigInteger where compatible
- Supports Vector2, Vector3, Vector4 and Quaternion returns
- Void methods can use Patch NOP
- Manual Input accepts raw arm64 patch bytes for advanced users
- Redirect sends one compatible method to another method
- Active patches can be enabled, disabled or restored
- Generated patch bytes can be copied when available

Example: Boolean patch

bool CanAfford(ItemData item)

After confirming this is the real local purchase check, open Patcher, select True and press Patch. Test the real purchase or call the method again. Press Restore when the test is complete.

Do not apply a Boolean patch to an int or void method. The patch type must match the real return type.

Example: NOP patch

void ConsumeEnergy()

Because this method returns void, it cannot return true or 999. Patch NOP prevents its body from running. Be careful: a void method may also perform cleanup or callbacks, so NOP can break other game logic.

Tracer

- Trace shows when a method executes
- Trace + Return also captures supported return information
- Displays hit count and calls per second
- Can display arguments and return values
- Pause freezes the current trace display
- Clear removes trace history
- Auto-Stop can stop extremely hot methods at a CPS limit

Example: finding the spending method

1. Search for Spend, Purchase, Buy or Consume methods.
2. Trace one candidate.
3. Spend 500 coins in the game.
4. Check which method fired and whether 500 appeared as an argument.
5. Stop tracing after you have enough evidence.

Avoid Trace All unless necessary. Tracing too many hot methods can reduce performance or crash the game.

Scripting

- Create, open, edit and save Lua files
- Files are stored in Documents/libTool-files/script
- Multiple scripts can be opened in separate tabs
- Paste from clipboard and Clear are available
- Check Syntax reports the exact script line
- Run executes a one-shot script
- Scripts defining OnDraw() automatically use Run UI
- Restart UI reloads the current menu code
- Stop UI closes the persistent menu
- Runtime errors, stack traces and print logs are shown below the editor

Simple Lua example ( Subways Surfers )

local cls = Class.fromName("Game.WalletModel")
if not cls then
  print("WalletModel not found")
  return
end

local wallet = cls:findObjects()[1]
if not wallet then
  print("No live WalletModel")
  return
end

local ok, value = pcall(function()
  return wallet:GetCoins()
end)

print("GetCoins ok=", ok, "value=", value)

Lua rules

- Static method: cls.StaticMethod()
- Instance method: obj:Method()
- Property: obj.Property, not obj:Property()
- Use collectionItems(...) before iterating a managed List/Dictionary/Array
- Always check class and object values for nil
- Use pcall for experimental actions
- Print BEFORE, AFTER and DELTA when modifying a value

Simple UI menu example

local state = { amount = 1000, status = "Ready" }

function OnDraw()
  ImGui.SetNextWindowSize(380, 260)
  local visible = ImGui.Begin("Wallet Menu")

  if visible then
    local changed, amount = ImGui.InputInt("Amount", state.amount, 100, 1000)
    if changed then state.amount = amount end

    if ImGui.Button("Apply") then
      state.status = "Requested: " .. tostring(state.amount)
    end

    ImGui.SeparatorText("Status")
    ImGui.TextWrapped(state.status)
  end

  ImGui.End()
end

The Apply button above is only a UI example. Replace it with a class/method that you already verified in Tools.

AI

- AI can inspect the actual runtime instead of only giving generic answers
- Supports OpenCode Zen Free dynamic models
- Supports OpenAI account login
- Supports GitHub Copilot
- Supports custom OpenAI-compatible providers
- Keeps separate chat sessions for different games
- Shows plan and analysis progress
- Tracks context/token usage and supports conversation compaction
- Can inspect classes, methods, fields, objects and collections
- Can compare candidate classes
- Can inspect nested objects
- Can call verified methods or write fields
- Can patch and restore methods
- Can create, validate and save Lua scripts
- Saved scripts automatically open in Scripting

AI prompt example

Quote

 

The game currently displays 10,000 coins. Find the live class that owns this exact value. Search Wallet/Currency classes and related getters. Compare live objects and the UI value. Do not modify anything until the source of truth and method signature are confirmed.

After the class is confirmed:

WalletModel.GetCoins() matches the UI and SetCoins(int) is confirmed on the same object. Create a compact Lua menu with one InputInt, one Apply button, nil checks, pcall and a status message. Save it and open it in Scripting.

AI can make mistakes. Always verify the result with Tools, Caller, Inspector or the game UI.

 

ESP

- GameObjects tab lists live Unity GameObjects
- Filter by object ID or name
- hasComponent:Type filters objects by Component
- Components tab groups Component types and shows their object count
- A Component can be selected as Main Component
- Additional Sub Components reduce false targets
- Camera selector supports the default or another live camera
- Name filter supports Equal or Contain
- Overlay options include Ray line, Box, Distance and Object name
- Draw starts the overlay and Stop ends it

Example: Enemy ESP

1. Open Components and search EnemyController.
2. Set EnemyController as Main Component.
3. If friendly NPCs also match, add EnemyHealth as a Sub Component.
4. Open Draw and start with Default Main Camera.
5. Enable Box, Distance and Object name.
6. Press Draw.

Use a specific Component with a small object count. Transform may have thousands of objects, while EnemyController may have only 20 targets.

Dumper

- Dumps IL2CPP metadata from the running game
- Shows current progress/class while dumping
- Creates a C#-style .cs file
- Output name contains the package and game version where available
- Copy path copies the final location

Example

1. Wait until the game is fully loaded.
2. Open Dumper.
3. Press DUMP once.
4. Wait for Done.
5. Copy the output path.
6. Search the file for WalletModel, GetCoins or another class discovered in Tools.

The dump is not the original game source and does not show which object is currently alive. Use Dumper for offline reference and Tools for runtime verification.

Settings

- Text/UI size from 25% to 200%
- Maximum Content, Compact and Comfortable density
- Dark, Light and Classic styles
- Menu FPS selection up to the device refresh rate
- Scroll speed adjustment
- Show or hide Scripting, AI and ESP tabs
- Device, iOS, screen, bundle, game version and Unity information
- Reset display/performance or optional tabs

Download

Important

- Use LibTool only on software and devices you own or are authorized to test
- Back up important local game data
- A wrong field, object, method signature or patch can crash the app
- Online games may validate values on the server or detect modifications
- Runtime patches normally disappear after restarting the app
- Do not resell or redistribute modified LibTool builds without permission

Credits

  • Like 3
Posted

Additional note for anyone who wants to explore more LibTool examples

You can also learn from Android LibTool videos because the main Unity IL2CPP workflow is almost the same: browse images and classes, search for fields or methods, inspect live objects, test a function, and verify the result inside the game. The installation and injection process is different on Android, so please do not copy those setup steps directly to iOS.

If you use the AI feature inside LibTool, I recommend Provider: OpenCode Zen.

My personal favorite is DeepSeek with Thinking set to Max. It can analyze a wider class structure, compare related Wallet, Currency, Inventory or Manager classes, and help you reach a useful mod or Lua script much faster. The exact DeepSeek model name may change as the OpenCode Zen catalog is updated, so choose the currently available DeepSeek model and select Max, or the highest Thinking level offered.

Please try it and share your experience. Tell me which game and version you tested, which model you used, what the AI found correctly or incorrectly, and whether the generated patch or script worked. Your feedback will help me improve LibTool in future updates.

Posted (edited)

Absolute goat I love this tool. Never tried deepseek inside the tool, but from my own tests I find it that it just goes around the subject in modding instead of actually doing it, it has the right info and direction but couldn’t actually pull it off, the other models I used actually did things all the way. 
Regarding the tool, I always prefer the ai to directly patch things because the menu it creates always lags the game when something is enabled 

Updated by VaaR

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

    • (18+) Rise of Eros +2 Jailed Cheats
      Modded/Hacked App: Rise of Eros By EroLabs
      Bundle ID: com.pinkcore.riseoferos
      App Store Link: https://www.ero-labs.com/en/game/rise-of-eros

       

       

      📌 Mod Requirements

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

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense 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
      • 65 replies
    • (18+) Horny Villa +1 Jailed Cheat
      Modded/Hacked App: Horny Villa By EROLABS
      Bundle ID: com.GreenT.HornyVilla
      App Store Link: https://www.ero-labs.com/en/game/horny-villa

       

       

      📌 Mod Requirements

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

       

      🤩 Hack Features

      - Unlimited Currencies → Spend/Gain

       

      ⬇️ 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
      • 274 replies
    • OCTOPATH TRAVELER: CotC +6 Cheats
      Modded/Hacked App: OCTOPATH TRAVELER: CotC By NETEASE INTERACTIVE ENTERTAINMENT PTE. LTD
      Bundle ID: com.netease.octopath.sea
      App Store Link: https://apps.apple.com/us/app/octopath-traveler-cotc/id6453476038?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

      - Damage Multiplier
      - Defense Multiplier
      - Inifinite SP
      - Infinite Boost
      - Instant Break → Always Our Turn
      - Unlimited Gold

       

      ⬇️ 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.
      • 3 replies
    • OCTOPATH TRAVELER: CotC +6 Jailed Cheats
      Modded/Hacked App: OCTOPATH TRAVELER: CotC By NETEASE INTERACTIVE ENTERTAINMENT PTE. LTD
      Bundle ID: com.netease.octopath.sea
      App Store Link: https://apps.apple.com/us/app/octopath-traveler-cotc/id6453476038?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

      - Damage Multiplier
      - Defense Multiplier
      - Infinite SP
      - Infinite Boost
      - Instant Break → Always Our Turn
      - Unlimited Gold

       

      ⬇️ 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
      • 0 replies
    • Stone Island : Simulator +2 Jailed Cheats
      Modded/Hacked App: Stone Island : Simulator By Game Duo Co.,Ltd.
      Bundle ID: net.gameduo.bbc
      App Store Link: https://apps.apple.com/ph/app/stone-island-simulator/id6745582536?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

      - Damage Multiplier
      - Defense Multiplier
      - Freeze Currencies

       

      ⬇️ 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
      • 51 replies
    • Bowmasters - Multiplayer Game +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
        • Agree
        • Like
      • 264 replies
    • Otherworld Legends +5 Jailed Cheats
      Modded/Hacked App: Otherworld Legends By ChillyRoom
      Bundle ID: com.chillyroom.otherworld
      iTunes Store Link: https://apps.apple.com/us/app/otherworld-legends/id1439772060?uo=4&at=1010lce4

       

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


      Hack Features:
      - Player AttackSpeed
      - Enemy Attack Speed
      - Always Full Health
      - No Skill CD
      - Dumb AI


      Jailbreak required hack(s): 


      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.
      STEP 3: Download Sideloadly and install it.
      STEP 4: Open/Run Sideloadly on your computer then 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 now 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:
      - @Amuyea


      Cheat Video/Screenshots:

      N/A
      • 196 replies
    • OUTERPLANE - Strategy Anime +2 Jailed Cheats
      Modded/Hacked App: OUTERPLANE - Strategy Anime By Smilegate Holdings, Inc.
      Bundle ID: com.smilegate.outerplane.stove.ios
      iTunes Store Link: https://apps.apple.com/us/app/outerplane-strategy-anime/id1630880836?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:
      - God mode
      - OHK
      - Unlimited AP
      - No CD skill
      • 146 replies
    • Arrows & Cats: Rescue Puzzle +2 Jailed Cheats
      Modded/Hacked App: Arrows & Cats: Rescue Puzzle By Nanali Inc.
      Bundle ID: com.Nanali.ArrowsAndCats
      App Store Link: https://apps.apple.com/us/app/arrows-cats-rescue-puzzle/id6761253603?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

      - SRDebug Menu
      - No ADS

       

      ⬇️ 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
      • 1 reply
    • Darkstar: Idle RPG +3 Jailed Cheats
      Modded/Hacked App: Darkstar: Idle RPG By Neptune Company
      Bundle ID: com.neptune.darkstar
      iTunes Store Link: https://apps.apple.com/us/app/darkstar-idle-rpg/id6612023856?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

      - Damage Multiplier
      - Never Die


      Jailbreak required iOS hacks: 

       

      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 this tutorial topic which includes a video example.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 5: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 6: Enter your Apple Account email when prompted, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide 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. 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
      • 136 replies
    • Dark Knight kiugi : Idle +5 Jailed Cheats
      Modded/Hacked App: Dark Knight kiugi : Idle By MINHYE Kim
      Bundle ID: com.retrocatcher.dk
      App Store Link: https://apps.apple.com/us/app/dark-knight-kiugi-idle/id6785444645?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

      - Damage Multiplier
      - Defense Multiplier
      - Currency Multiplier
      - Experience Multiplier
      - No ADS

       

      ⬇️ 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
      • 13 replies
    • BangBang Zombies: Shelter Wars +4 Jailed Cheats
      Modded/Hacked App: BangBang Zombies: Shelter Wars By Muye Games Co.,Ltd.
      Bundle ID: com.lastshelter.ios
      App Store Link: https://apps.apple.com/us/app/bangbang-zombies-shelter-wars/id6747997392?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

      - Damage Multiplier
      - Defense Multiplier
      - Game Speed Multiplier
      - Unlimited Ammo

      Adjust Value → Restart Game

       

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