Jump to content

[TuT] How to make a Shell Script hack


bR34Kr

15 posts in this topic

Recommended Posts

Hello! You will learn how to recreate the Baseball boy hack I created using Shell scripting! This can work on any other game that supports this.

 

-Requirements

  • A jailbreak
  • MTerminal (or use SSH; If MTerminal does not work, install an SSH app from the App Store and OpenSSH to then SSH to root@localhost:22)
  • Filza/iFile/Any file manager

-Tutorial

So first off, create a new folder in where your hack will be. In that folder make 2 folders; DEBIAN and var. In var create a new folder called mobile and in that create a new folder called BaseBallBoyHack and in that create 2 folders called Backup and Hacked. Done with the folders and now you need to get the files. So in Filza (or anything else) head to /var/mobile/Containers/Data/Application and find Baseball Boy. In that directory you should have a Documents folder. This folder is where most of save game cheats are applied. 

Note: Note that some games that dont have a Documents directory may have it in /var/mobile/Containers/Bundle/Application/yourGameName/yourGameName.app/Data/Raw

 

So back in your Documents folder you should have 4 files which we will hack:

  • bouncinessLevel
  • speedLevel
  • strengthLevel
  • offline earningLevel

What you need to do now is to go in Baseball Boy, remember one of your levels and convert it to hexadecimal. (Search it on Google) Then go back in any of the 4 files, edit the hex where is your level and repeat until 4 of them are hacked.

 

When the four of them are hacked, copy the four files over to the Hacked directory you made. 

 

TIME FOR SCRIPTING

 

Back in BASEBALLBOYHACKFOLDER/var/mobile you need to create 3 files. hack.sh - restore.sh - backup.sh (You can merge backup.sh with hack.sh if you want. Just write the commands on top of it.) 

 

hack.sh

In hack.sh start off by typing:

#!/bin/sh

 

Then we want to know the UUID of BaseBall Boy which is unknown. So type in:

Spoiler

 

echo Input BaseBall Boy UUID:

read UUID

 

 

The echo command will print what's after the command to the console. The read command will ask for input and since we put UUID, it will store the inputted UUID to a variable called UUID. Got it? So let's continue.

 

Next we need to take our hacked files and move them to BaseBall Boy. Type in:


 

Spoiler

 

cp /var/mobile/BaseBallBoyHack/Hacked/speedlevel /var/mobile/Containers/Data/Application/$UUID/Documents

cp /var/mobile/BaseBallBoyHack/Hacked/bouncinesslevel /var/mobile/Containers/Data/Application/$UUID/Documents

cp /var/mobile/BaseBallBoyHack/Hacked/strengthlevel /var/mobile/Containers/Data/Application/$UUID/Documents

cp "/var/mobile/BaseBallBoyHack/Hacked/offline earningsLevel"  /var/mobile/Containers/Data/Application/$UUID/Documents

 

 

The cp command copies the first input (file) to the 2nd input (directory). So we copy the hacked game files to the BaseBall Boy saves. We also put the "offline earningsLevel" in apostrophes because it has a space in the name. That's it for the hack.sh!

 

backup.sh

This one will copy the data from your game to /Backup. Start off with the same old:

Spoiler

 

echo Input BaseBall Boy UUID:

read UUID

 

 

This will get the UUID from the game. Next is the copying. So type in:

Spoiler

 

cp  /var/mobile/Containers/Data/Application/$UUID/Documents/speedLevel /var/mobile/BaseBallBoyHack/Backup/

cp  /var/mobile/Containers/Data/Application/$UUID/Documents/strengthLevel /var/mobile/BaseBallBoyHack/Backup/

cp /var/mobile/Containers/Data/Application/$UUID/Documents/bouncinessLevel  /var/mobile/BaseBallBoyHack/Backup/

cp  "/var/mobile/Containers/Data/Application/$UUID/Documents/offline earningsLevel" /var/mobile/BaseBallBoyHack/Backup/

 

 

Notice how we switched the first and second inputs of cp. This is because we want the files from the game itself and not the hack. This is it for the backup. This code written above can be merged with hack.sh by putting it over the hack commands. UNDER THE #!/bin/sh OR ELSE IT WILL NOT WORK!

 

 

restore.sh

Remember to write #!/bin/sh at the beginning! So now we want to restore our saved game back. It's as simple as the other ones!

So write:

Spoiler

 

echo Input BaseBall Boy UUID:

read UUID

 

 

This is to store the UUID as a variable.

Then type:

Spoiler

 

cp /var/mobile/BaseBallBoyHack/Backup/speedlevel /var/mobile/Containers/Data/Application/$UUID/Documents

cp /var/mobile/BaseBallBoyHack/Backup/bouncinesslevel /var/mobile/Containers/Data/Application/$UUID/Documents

cp /var/mobile/BaseBallBoyHack/Backup/strengthlevel /var/mobile/Containers/Data/Application/$UUID/Documents

cp "/var/mobile/BaseBallBoyHack/Backup/offline earningsLevel"  /var/mobile/Containers/Data/Application/$UUID/Documents

 

 

So this will overwrite the hacked data by taking the data from backup and overwriting. This is it for scripting, not for the hack.

 

SETUP FOR THE HACK TO WORK

So you want that hack on iOSGods or for yourself? Well we need to set the permissions on each file to Owner: Read, Write and Execute. Leave the rest alone. Also, why is there a DEBIAN folder? Well go in there and make a new file called control and put this inside of it:

Spoiler

Package: com.username.baseballboyhack

Name: BaseballBoy Hack

Depends: mobilesubstrate, preferenceloader

Version: 1.0.0

Architecture: iphoneos-arm

Description: Made a tutorial

Maintainer: username

Author: username

Section: Tweaks

Homepage: https://iosgods.com

 

This will make the packaging as .deb work. Now select DEBIAN folder and var folder at the same time and select Create DEB. (In Filza, I don't know for others)

There you have it! A .deb with a Shell Hack!

 

If it says packaging failed, add a few returns after Homepage in control

 

-Credits

- @bbReakMe

 

Have fun!

 

 

Link to comment
https://iosgods.com/topic/65031-tut-how-to-make-a-shell-script-hack/
Share on other sites

5 minutes ago, DiDA said:

Nice but there's a much easier way. :p

And you can skip the UUID stuff, just use a * and it'll work pretty well.

No because it's the Documents folder. If you don't put it it'll get the first app's Documents folder.

5 minutes ago, Amuyea said:

Nice tut  :)

:teehee:

2 minutes ago, bbReakMe said:

No because it's the Douments folder. If you don't put it it'll get the first app's Documents folder.

Oh right, I forgot. I'm used to targeting the app's folder and looking for the .app.

You may find this useful and learn something more from it. :)

https://github.com/iOSGods/Auto-Lipo-for-iOS-5-to-iOS-11-Binary-Only/blob/master/postinst

Just now, Joka said:

What is this 

What is what?:thinking:

1 minute ago, DiDA said:

Oh right, I forgot. I'm used to targeting the app's folder and looking for the .app.

You may find this useful and learn something more from it. :)

https://github.com/iOSGods/Auto-Lipo-for-iOS-5-to-iOS-11-Binary-Only/blob/master/postinst

Thanks. I'll read that; It should help me.

Just now, bbReakMe said:

Yes but with a backup. And it saves useless questions about how to use Filza.

 

Just now, bbReakMe said:

Yes but with a backup. And it saves useless questions about how to use Filza.

Ah ok. So it makes it into a tweak?

Archived

This topic is now archived and is closed to further replies.

  • Our picks

    • (Kinnikuman Extreme Japan)キン肉マン 極・タッグ乱舞 v1.1.11 +2 Cheats
      Modded/Hacked App: キン肉マン 極・タッグ乱舞 By COPRO Co., Ltd.
      Bundle ID: jp.kcopro.kin001
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%82%AD%E3%83%B3%E8%82%89%E3%83%9E%E3%83%B3-%E6%A5%B5-%E3%82%BF%E3%83%83%E3%82%B0%E4%B9%B1%E8%88%9E/id1623345808?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
      • 16 replies
    • (Kinnikuman Extreme Japan) キン肉マン 極・タッグ乱舞 v1.1.11 +2 Jailed Cheats
      Modded/Hacked App: キン肉マン 極・タッグ乱舞 By COPRO Co., Ltd.
      Bundle ID: jp.kcopro.kin001
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%82%AD%E3%83%B3%E8%82%89%E3%83%9E%E3%83%B3-%E6%A5%B5-%E3%82%BF%E3%83%83%E3%82%B0%E4%B9%B1%E8%88%9E/id1623345808?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
      • 15 replies
    • Heaven Burns Red v1.1.9 +2 Jailed Cheats
      Modded/Hacked App: Heaven Burns Red By YOSTAR (HONG KONG) LIMITED
      Bundle ID: com.YoStarEN.HBR
      iTunes Store Link: https://apps.apple.com/us/app/heaven-burns-red/id6630372362?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
      • 13 replies
    • Heaven Burns Red v1.1.9 +2 Cheats
      Modded/Hacked App: Heaven Burns Red By YOSTAR (HONG KONG) LIMITED
      Bundle ID: com.YoStarEN.HBR
      iTunes Store Link: https://apps.apple.com/us/app/heaven-burns-red/id6630372362?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): 


      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
      • 5 replies
    • Heavenly Demon IDLE RPG v1.056 +2 Jailed Cheats
      Modded/Hacked App: Heavenly Demon IDLE RPG By StandEgg Co., Ltd
      Bundle ID: com.standegg.glcheonma
      iTunes Store Link: https://apps.apple.com/us/app/heavenly-demon-idle-rpg/id6504672068?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:
      - Never Die
      - Reward 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
      • 90 replies
    • Heavenly Demon IDLE RPG v1.056 +2 Cheats
      Modded/Hacked App: Heavenly Demon IDLE RPG By StandEgg Co., Ltd
      Bundle ID: com.standegg.glcheonma
      iTunes Store Link: https://apps.apple.com/us/app/heavenly-demon-idle-rpg/id6504672068?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:
      - Never Die
      - Reward 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
      • 113 replies
    • Merge Magic! v7.5.0 +2 Cheats
      Modded/Hacked App: Merge Magic! By Gram Games
      Bundle ID: com.gramgames.mergemagic
      iTunes Store Link: https://apps.apple.com/us/app/merge-magic/id1462419002


      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 currencies





      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
      • 82 replies
    • Merge Magic! v7.5.0 +2 Jailed Cheats
      Modded/Hacked App: Merge Magic! By Gram Games
      Bundle ID: com.gramgames.mergemagic
      iTunes Store Link: https://apps.apple.com/us/app/merge-magic/id1462419002?uo=4&at=1010lce4

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


      Hack Features:
      - Add Gems - Tap on Sound Button in Settings
      - Add Coins - Tap on Music Button in Settings
      - Add Woods - Tap on Tutorial Button in Settings

      This hack works on the latest x64 or ARM64 iDevices: iPhone 5s, 6, 6 Plus, 6s, 6s Plus, 7, 7 Plus, 8, 8 Plus, X, Xr, Xs, Xs Max, SE, iPod Touch 6G, iPad Air, Air 2, Pro & iPad Mini 2, 3, 4 and later.
      • 53 replies
    • (Ninja Must Die China) 忍者必须死3 v2.0.64 +2 Jailed Cheats
      Modded/Hacked App: 忍者必须死3 By Hangzhou Yanhun Network Technology Co., Ltd.
      Bundle ID: com.pandadastudio.ninjamustdie3
      iTunes Store Link: https://apps.apple.com/cn/app/%E5%BF%8D%E8%80%85%E5%BF%85%E9%A1%BB%E6%AD%BB3/id1020071295?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:
      - Never Die
      - Unlimited Jump


      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
      • 12 replies
    • (Sausage Man China) 香肠派对-猪猪侠联动 v19.17 +9 Jailed Cheats
      Modded/Hacked App: 香肠派对-猪猪侠联动 By X.D. Network Inc.
      Bundle ID: com.xd.Sausage
      iTunes Store Link: https://apps.apple.com/cn/app/%E9%A6%99%E8%82%A0%E6%B4%BE%E5%AF%B9-%E7%8C%AA%E7%8C%AA%E4%BE%A0%E8%81%94%E5%8A%A8/id1326730621?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:
      - Walk On Water
      - Custom FOV
      - Custom Speed
      - No Recoil
      - No Shake
      - No Muzzle Flash
      - Superman
      - No Fire Sound
      - No Reload Sound
      - No Bow Sound

      Notes:
      - FOV set it to around 100.
      - Speed, set it around 10 and see if the server registers your speed.


      Jailbreak required hcom'.
      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:
      - Zahir


      Cheat Video/Screenshots:

      N/A
      • 94 replies
    • (Ninja Must Die China) 忍者必须死3 v2.0.64 +2 Cheats
      Modded/Hacked App: 忍者必须死3 By Hangzhou Yanhun Network Technology Co., Ltd.
      Bundle ID: com.pandadastudio.ninjamustdie3
      iTunes Store Link: https://apps.apple.com/cn/app/%E5%BF%8D%E8%80%85%E5%BF%85%E9%A1%BB%E6%AD%BB3/id1020071295?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:
      - Never Die
      - Unlimited Jumps


      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
      • 34 replies
    • (Sausage Man China) 香肠派对-变形金刚联动 v19.17 +9 Cheats
      Modded/Hacked App: 香肠派对 By X.D. Network Inc.
      Bundle ID: com.xd.Sausage
      iTunes Store Link: https://apps.apple.com/cn/app/%E9%A6%99%E8%82%A0%E6%B4%BE%E5%AF%B9/id1326730621?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:
      - Rainbow Wall Hack
      - Walk On Water
      - Custom FOV
      - Custom Speed
      - No Recoil
      - No Shake
      - No Muzzle Flash
      - Superman
      - No Fire Sound
      - No Reload Sound
      - No Bow Sound
      Notes:
      - First time doing wall hack and is buggy, for some reason, the game stops registering players if they're not in your vision so it still useful to see enemies easily but works best against bots
      - FOV set it to around 100.
      - Speed, set it around 10 and see if the server registers your speed.


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


      Cheat Video/Screenshots:

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