Jump to content

15 posts in this topic

Recommended Posts

Posted

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!

 

 

  • Like 2
Posted

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.

Posted (edited)
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:

Updated by bbReakMe
Posted
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.

What is this 

Posted
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

Posted
3 minutes ago, bbReakMe said:

What is what?:thinking:

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

What's this tutorial about? Is it about making a save game cheat into a Deb hack?

Posted
Just now, Joka said:

What's this tutorial about? Is it about making a save game cheat into a Deb hack?

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

Posted
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?

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

    • Hero Z: Idle defense v0.0.7 [+2 Cheats]
      Modded/Hacked App: Hero Z: Idle defense By CYBERJOY LIMITED
      Bundle ID: com.cyberjoy.heroz
      App Store Link: https://apps.apple.com/us/app/hero-z-idle-defense/id6478379131?uo=4



      🤩 Hack Features

      - Never Die
      - Activate Priv Pass (You can't claim diamonds but all the features enabled. Skip ads, More stamina cap etc.)
       
        • Winner
      • 1 reply
    • Hero Z: Idle defense v0.0.7 [+2 Jailed Cheats]
      Modded/Hacked App: Hero Z: Idle defense By CYBERJOY LIMITED
      Bundle ID: com.cyberjoy.heroz
      App Store Link: https://apps.apple.com/us/app/hero-z-idle-defense/id6478379131?uo=4



      🤩 Hack Features

      - Never Die
      - Activate Priv Pass (You can't claim diamonds but all the features enabled. Skip ads, More stamina cap etc.)
        • Winner
      • 1 reply
    • Jolly Match 3 - Puzzle Game v1.0.1884 [ +5 Cheats ] Auto Win
      Modded/Hacked App: Jolly Match 3 - Puzzle Game By Jollyco LLC
      Bundle ID: com.jollyco.jollybattlematch3
      App Store Link: https://apps.apple.com/us/app/jolly-match-3-puzzle-game/id1554274735?uo=4


      🤩 Hack Features

      - Auto Win

      - Coins

      - Stars

      - Lives

      - Booster
      • 1 reply
    • Jolly Match 3 - Puzzle Game v1.0.1884 [ +5 Jailed ] Auto Win
      Modded/Hacked App: Jolly Match 3 - Puzzle Game By Jollyco LLC
      Bundle ID: com.jollyco.jollybattlematch3
      App Store Link: https://apps.apple.com/us/app/jolly-match-3-puzzle-game/id1554274735?uo=4


      🤩 Hack Features

      - Auto Win

      - Coins

      - Stars

      - Lives

      - Booster
      • 1 reply
    • Cannon Heroes X v1.2.19 [+3 Jailed Cheats]
      Modded/Hacked App: Cannon Heroes X By Zego Global Pte Ltd
      Bundle ID: com.ig.cannon.heroes
      App Store Link: https://apps.apple.com/us/app/cannon-heroes-x/id6744356657?uo=4



      🤩 Hack Features

      - Free IAP
      - Never Die
      - Debug Menu (Enable once then restart game. Enable again you'll see debug menu)
        • Winner
        • Like
      • 1 reply
    • Cannon Heroes X v1.2.19 [+3 Cheats]
      Modded/Hacked App: Cannon Heroes X By Zego Global Pte Ltd
      Bundle ID: com.ig.cannon.heroes
      App Store Link: https://apps.apple.com/us/app/cannon-heroes-x/id6744356657?uo=4



      🤩 Hack Features

      - Free IAP
      - Never Die
      - Debug Menu (Enable once then restart game. Enable again you'll see debug menu)
       
        • Winner
        • Like
      • 1 reply
    • Archero Cheats v6.14.0 +5 [ God Mode & More ]
      Modded/Hacked App: Archero by HABBY PTE. LTD.
      Bundle ID: com.habby.archero
      iTunes Store Link: https://apps.apple.com/us/app/archero/id1453651052?uo=4&at=1010lce4



      Hack Features:
      - Multiply Defense to
      - Multiply Damage to
      - God Mode
      - OHK (Must use with God Mode)
      - Freeze Enemies

      NOTE: If you want to use god mode and ohk turn off multiply damage and defense first. I added multiply damage and defense there to avoid ban


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/100710-archero-v210-enemies-dont-attack-x30-attack/


      Hack Download Link: https://iosgods.com/topic/96783-arm64-archero-cheats-v220-5/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 15,861 replies
    • Galaxy Defense: Fortress TD v0.9.2 [+2 Cheats]
      Modded/Hacked App: Galaxy Defense: Fortress TD By CYBERJOY LIMITED
      Bundle ID: com.cyberjoy.galaxydefense
      App Store Link: https://apps.apple.com/us/app/galaxy-defense-fortress-td/id6740189002?uo=4



      🤩 Hack Features

      - One Hit Kill
      - Activate SVIP
       
        • Agree
        • Thanks
        • Winner
        • Like
      • 29 replies
    • Galaxy Defense: Fortress TD v0.9.2 [+2 Jailed Cheats]
      Modded/Hacked App: Galaxy Defense: Fortress TD By CYBERJOY LIMITED
      Bundle ID: com.cyberjoy.galaxydefense
      App Store Link: https://apps.apple.com/us/app/galaxy-defense-fortress-td/id6740189002?uo=4



      🤩 Hack Features

      - One Hit Kill
      - Activate SVIP
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 7 replies
    • Bounce Defense v1.4.0 [+5 Jailed Cheats]
      Modded/Hacked App: Bounce Defense By Voodoo
      Bundle ID: com.minigamelab.bouncedefense
      App Store Link: https://apps.apple.com/us/app/bounce-defense/id6740627201?uo=4



      🤩 Hack Features

      - Add Currency
      - Add Battle Currency (Enable inside battle)
      - Never Die
      - Unlock All Towers
      - Unlimited Tower Cards
        • Informative
        • Like
      • 14 replies
    • Bounce Defense v1.4.0 [+5 Cheats]
      Modded/Hacked App: Bounce Defense By Voodoo
      Bundle ID: com.minigamelab.bouncedefense
      App Store Link: https://apps.apple.com/us/app/bounce-defense/id6740627201?uo=4



      🤩 Hack Features

      - Add Currency
      - Add Battle Currency (Enable inside battle)
      - Never Die
      - Unlock All Towers
      - Unlimited Tower Cards
        • Like
      • 9 replies
    • Slay the Titan : Deckbuild RPG v1.4.2 +2 Cheats
      Modded/Hacked App: Slay the Titan : Deckbuild RPG By Dreamplaygames Inc.
      Bundle ID: com.dreamplay.slaythetitan.apple
      App Store Link: https://apps.apple.com/us/app/slay-the-titan-deckbuild-rpg/id6741893290?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

       

      ⬇️ 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.
        • Informative
        • Agree
        • Thanks
        • Winner
      • 7 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