Jump to content

Next steps in making hacks?


CodeName9

19 posts in this topic

Recommended Posts

Posted

I read some tutorials and I managed to mod/hack a game ipa using Ida and a hex editor, now what’re the next steps? What can I do next? I see other mods with menus and options like premium or teleport, OHK, aim hacks etc etc but if I search my game currency (gems or coins etc) in this game named “Rocket Royal” nothing will show up but I know it is possible because there’s a vip hack for this game and it has all these options that I can’t seem to find, any information is greatly appreciated thank you 😝

Posted

I’m not that experienced but what I can tell you is some hacks can be created by just editing the binary however the good hacks like aimbot would require coding knowledge. If you have coding knowledge then you will need a device with Theos & a mod menu template in order to create a mod menu. You should probably keep looking for tutorials and keep practicing until you understand what to do

Posted
4 hours ago, Jacksonlane24 said:

I read some tutorials and I managed to mod/hack a game ipa using Ida and a hex editor, now what’re the next steps? What can I do next? I see other mods with menus and options like premium or teleport, OHK, aim hacks etc etc but if I search my game currency (gems or coins etc) in this game named “Rocket Royal” nothing will show up but I know it is possible because there’s a vip hack for this game and it has all these options that I can’t seem to find, any information is greatly appreciated thank you 😝

Use the Live offset patcher 

Posted
4 hours ago, Noctisx said:

Use the Live offset patcher 

Yep but I found that after I enter the patch and the offset, and then close the menu it and re open the menu, none of the patch or offset saved.. any idea? Also how would I create a |for example| hack such as a coin hack if there is no results in Ida? Is there another method? I tried dlg in the game and was able to modify the ammo and materials but if I wanted to find.. let’s say a result in Ida that if changed could give me premium or infinite coins or gems etc etc or even god mode (I know it’s possible as there’s already a hack) but I tried searching for things related to ‘Heath’ and ‘damage’ but no results, also I’d like to ask what a debugger is used for? Is it used to hack non unity games? 

5 hours ago, THC978 said:

I’m not that experienced but what I can tell you is some hacks can be created by just editing the binary however the good hacks like aimbot would require coding knowledge. If you have coding knowledge then you will need a device with Theos & a mod menu template in order to create a mod menu. You should probably keep looking for tutorials and keep practicing until you understand what to do

Thank you, I’ll make aimbot an achievement for me after I’ve figured the rest out, I’m guessing it’s c++ right?  And yep I’ve been editing the binary :) just some searches give me no results such as health and I know it’s possible as there’s another hack 

Posted
4 hours ago, Jacksonlane24 said:

 just some searches give me no results such as health and I know it’s possible as there’s another hack 

When modifying player health you will most likely need to look for damage instead and NOP the function so the player doesn't receive any damage. It won't work on every game though as it depends how the game developer has coded their game. There may be other techniques that can modify player health however for you the method i just described would be your option for now.

Posted
40 minutes ago, THC978 said:

When modifying player health you will most likely need to look for damage instead and NOP the function so the player doesn't receive any damage. It won't work on every game though as it depends how the game developer has coded their game. There may be other techniques that can modify player health however for you the method i just described would be your option for now.

Thanks a lot for this. just making sure I’m thinking correct, if I convert NOP it will be 1F2003D5 wich I put into the hex right? If I’ve don’t it to the right function it should work right? 

Posted
55 minutes ago, Jacksonlane24 said:

Thanks a lot for this. just making sure I’m thinking correct, if I convert NOP it will be 1F2003D5 wich I put into the hex right? If I’ve don’t it to the right function it should work right? 

Yes that is the correct conversion. And it theoretically should work yes, but again it depends how the game developers have created their game

Posted
On 5/28/2020 at 8:46 PM, Jacksonlane24 said:

Yep but I found that after I enter the patch and the offset, and then close the menu it and re open the menu, none of the patch or offset saved.. any idea? Also how would I create a |for example| hack such as a coin hack if there is no results in Ida? Is there another method? I tried dlg in the game and was able to modify the ammo and materials but if I wanted to find.. let’s say a result in Ida that if changed could give me premium or infinite coins or gems etc etc or even god mode (I know it’s possible as there’s already a hack) but I tried searching for things related to ‘Heath’ and ‘damage’ but no results, also I’d like to ask what a debugger is used for? Is it used to hack non unity games? 

Thank you, I’ll make aimbot an achievement for me after I’ve figured the rest out, I’m guessing it’s c++ right?  And yep I’ve been editing the binary :) just some searches give me no results such as health and I know it’s possible as there’s another hack 

When dumping the files with Lc22pdumper you will get DummyDll files. Download dnspy and open dnspy  drag all dummydll files and change the search method to “Method” and search for get_coin.   Or coins or whatever it is in the game.      Double click the thing you searched for you will get a bunch of code Just put the VA= Code into the patcher example 10138482 or whatever it is for you.     Then. The hex would be something like 0090261EC0035FD6.      C0035FD6 is just a return value.   0090261E is the main hex.  Then just enable it and get some coins     You should get like 500 million coins etc etc.     You don’t even need to use IDA pro.  For Unity game hacking lol.     And yeah a debugger could be used to hack games but they are mostly outdated you’ll have to manually find and search the binary strings which takes time and effort 

Posted
4 hours ago, Noctisx said:

When dumping the files with Lc22pdumper you will get DummyDll files. Download dnspy and open dnspy  drag all dummydll files and change the search method to “Method” and search for get_coin.   Or coins or whatever it is in the game.      Double click the thing you searched for you will get a bunch of code Just put the VA= Code into the patcher example 10138482 or whatever it is for you.     Then. The hex would be something like 0090261EC0035FD6.      C0035FD6 is just a return value.   0090261E is the main hex.  Then just enable it and get some coins     You should get like 500 million coins etc etc.     You don’t even need to use IDA pro.  For Unity game hacking lol.     And yeah a debugger could be used to hack games but they are mostly outdated you’ll have to manually find and search the binary strings which takes time and effort 

Wow this is helpful thanks! :) and so I’m Now In dnspy and dragged the dummydll files and set search to method and I searched around and I found functions like: “get”/“set” “DebugAllUpgradesUnlocked” or “DebugAllCharactersUnlocked” etc etc this is subway surfers by the way! And so I double click it and it shows : “Address” and “Attribute” and One has “RVA” “Offset” “VA”and the other has “Name” “RVA” “Offset”.. this is a bool function so true or false and I obviously wanna make it true so would I go to the live patcher in subway and for “offset” type the VA or Offset code? And for the “patch” to make it true I would write : “20008052C0035FD6”? As I read this is true for bool

 

Also i tried changing the coins> I put the VA code in offset and for the patch i put 0090261EC0035FD6 and it worked! exept.. the coins were in the minus i think? but soon after they quickly went back to the original number.. is there a way to prevent this?

Posted
2 hours ago, Jacksonlane24 said:

Wow this is helpful thanks! :) and so I’m Now In dnspy and dragged the dummydll files and set search to method and I searched around and I found functions like: “get”/“set” “DebugAllUpgradesUnlocked” or “DebugAllCharactersUnlocked” etc etc this is subway surfers by the way! And so I double click it and it shows : “Address” and “Attribute” and One has “RVA” “Offset” “VA”and the other has “Name” “RVA” “Offset”.. this is a bool function so true or false and I obviously wanna make it true so would I go to the live patcher in subway and for “offset” type the VA or Offset code? And for the “patch” to make it true I would write : “20008052C0035FD6”? As I read this is true for bool

 

Also i tried changing the coins> I put the VA code in offset and for the patch i put 0090261EC0035FD6 and it worked! exept.. the coins were in the minus i think? but soon after they quickly went back to the original number.. is there a way to prevent this?

Lmao forget the last part ^.. i just figured out how to stop it from decreasing to orginal number.. i just had to go to the armconverter.com and i put fmov s0, #? and changed the # to a lower number (1) so i didnt have so many coins to the point it went to the original number but now.. when i exit the page, the coins refresh to original number so how can i make the number fixed?

 

EDIT: i changed Get_coinspickedup and it went to 0 but i was able to watch a video add which gave me about 500000000 coins that are fixed and do not change

Archived

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

  • Our picks

    • HAWK: Airplane Space games Cheats v42.6 +3
      Modded/Hacked App: HAWK: Airplane Fighter jet sky By My.com B.V.
      Bundle ID: com.my.hawk.air.shooter
      iTunes Store Link: https://apps.apple.com/us/app/hawk-airplane-fighter-jet-sky/id1145878423?uo=4


      Hack Features:
      - God Mode
      - OHK
      - Instant Win


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/89813-arm64-hawk-bullet-hell-jet-shooter-v33-jailed-cheats-1/


      Hack Download Link: https://iosgods.com/topic/142184-hawk-airplane-fighter-jet-sky-cheats-v33-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,053 replies
    • June’s Journey: Hidden Objects v3.39.1 Jailed Cheats +2
      Modded/Hacked App: June’s Journey: Hidden Objects By wooga gmbh
      Bundle ID: net.wooga.junes-journey-hidden-object-mystery-game
      iTunes Store Link: https://apps.apple.com/us/app/junes-journey-hidden-objects/id1200391796?uo=4


      Hack Features:
      - Infinite Currencies
      - Instant Hint


      iOS Hack Download IPA Link: https://iosgods.com/topic/176104-june%E2%80%99s-journey-hidden-objects-v2946-jailed-cheats-2/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 53 replies
    • Hex Warriors v2.4.4 Cheat Menu [+10 Jailed Cheats]
      Modded/Hacked App: Hex Warriors By Voodoo
      Bundle ID: com.dong.hexwarriors
      App Store Link: https://apps.apple.com/us/app/hex-warriors/id6736930021?uo=4


       

      🤩 Hack Features

      Cheat Menu (Currency, Auto Win, Cards and more)
        • Like
      • 16 replies
    • Hex Warriors v2.4.4 Cheat Menu [+10 Cheats]
      Modded/Hacked App: Hex Warriors By Voodoo
      Bundle ID: com.dong.hexwarriors
      App Store Link: https://apps.apple.com/us/app/hex-warriors/id6736930021?uo=4



      🤩 Hack Features

      - Cheat Menu (Currency, Auto Win, Cards and more)
        • Winner
        • Like
      • 11 replies
    • Gangster Universe! v6.0.0 [+2 Cheats]
      Modded/Hacked App: Gangster Universe! By Supercent Inc.
      Bundle ID: io.supercent.beachamp2
      iTunes Store Link: https://apps.apple.com/us/app/gangster-universe/id6742225641?uo=4


      🤩 Hack Features

      - Never Die
      - Add Currency (Toggle on/off gives you currency use only in game)
       
        • Agree
        • Winner
        • Like
      • 4 replies
    • Gangster Universe! v6.0.0 [+2 Jailed Cheats]
      Modded/Hacked App: Gangster Universe! By Supercent Inc.
      Bundle ID: io.supercent.beachamp2
      iTunes Store Link: https://apps.apple.com/us/app/gangster-universe/id6742225641?uo=4



      🤩 Hack Features

      - Never Die
      - Add Currency (Toggle on/off gives you currency use only in game)
        • Agree
        • Like
      • 8 replies
    • Endless Wander - Roguelike RPG v2.4.29 [+3 Jailed Cheats]
      Modded/Hacked App: Endless Wander - Roguelike RPG By First Pick Studios
      Bundle ID: com.FirstPickStudios.Endless-Wander
      App Store Link: https://apps.apple.com/us/app/endless-wander-roguelike-rpg/id6473157705?uo=4



      🤩 Hack Features

      - Never Die
      - Always Enough Currency
      - Unlimited Currency (Will Always Increase)
        • Agree
        • Thanks
        • Winner
        • Like
      • 18 replies
    • Endless Wander - Roguelike RPG v2.4.29 [+3 Cheats]
      Modded/Hacked App: Endless Wander - Roguelike RPG By First Pick Studios
      Bundle ID: com.FirstPickStudios.Endless-Wander
      App Store Link: https://apps.apple.com/us/app/endless-wander-roguelike-rpg/id6473157705?uo=4



      🤩 Hack Features

      - Never Die
      - Always Enough Currency
      - Unlimited Currency (Will Always Increase)
       
        • Winner
        • Like
      • 14 replies
    • Hero Hunters - 3D Shooter wars v9.5 +5 Jailed Cheats
      Modded/Hacked App: Hero Hunters - 3D Shooter wars By Supercharge Mobile Corp.
      Bundle ID: com.hotheadgames.ios.survivors
      iTunes Store Link: https://apps.apple.com/us/app/hero-hunters-3d-shooter-wars/id1110217724?uo=4


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


      Hack Features:
      - 1 Hit Kill
      - Unlimited Ammo
      - No Reload
      - Higher Fire Rate
      - Disable Enemy Attacks

      Note: Finish tutorial using original game first from here. Only in singleplayer.


      Jailbreak required hack(s): 


      iOS Hack Download Link:

      Hidden Content
      React or reply to this topic to see the <a href='https://iosgods.com/topic/3762-info-how-to-unlockview-the-hidden-content-on-iosgods/?do=findComment&comment=78119'>hidden content & download link</a>.








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


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 85 replies
    • Fortias Saga: Idle RPG v1.0.86 +5 Jailed Cheats
      Modded/Hacked App: Fortias Saga: Action Adventure By ONDI TECHNOLOGY JOINT STOCK COMPANY
      Bundle ID: com.ondi.fortias.saga
      iTunes Store Link: https://apps.apple.com/us/app/fortias-saga-action-adventure/id6475805032?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
      - Shards & Items Multiplier*
      - Freeze Resources
      - No Ads

      *Turn Off When You Get Enough So It Don't Go Negative


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








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

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


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 189 replies
    • Fortias Saga: Idle RPG v1.0.86 +5 Cheats
      Modded/Hacked App: Fortias Saga: Action Adventure By ONDI TECHNOLOGY JOINT STOCK COMPANY
      Bundle ID: com.ondi.fortias.saga
      iTunes Store Link: https://apps.apple.com/us/app/fortias-saga-action-adventure/id6475805032?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
      - Shards & Items Multiplier*
      - Freeze Resources
      - No Ads
      *Turn Off When You Get Enough So It Don't Go Negative


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 236 replies
    • Hero Hunters - 3D Shooter wars v9.5 +4 Cheats
      Modded/Hacked App: Hero Hunters By Hothead Games
      Bundle ID: com.hotheadgames.ios.survivors
      iTunes Store Link: https://apps.apple.com/us/app/hero-hunters/id1110217724?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - Filza / iFile or iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate or Substitute.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - 1 Hit Kill
      - Unlimited Ammo
      - No Reload
      - Higher Fire Rate
      - Disable Enemy Attacks
      Note: Finish tutorial first. Only in singleplayer.


      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 then 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 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:
      - @Ted2


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 354 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