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

    • CookieRun: Kingdom v7.1.201 Jailed Cheats +3
      Modded/Hacked App: CookieRun: Kingdom By Devsisters Corp.
      Bundle ID: com.devsisters.ck
      App Store Link: https://apps.apple.com/us/app/cookierun-kingdom/id1509450845?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

      - Multiply Attack
      - Multiply Defense
      - No Skills Cooldown
       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/201150-cookierun-kingdom-v610001-jailed-cheats-3/
      • 137 replies
    • HomeScapes v8.7.100 Jailed Cheats +3
      Modded/Hacked App: Homescapes By PLR Worldwide Sales Limited
      Bundle ID: com.playrix.gardenscapes-sweethome
      iTunes Store Link: https://apps.apple.com/us/app/homescapes/id1195621598?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

      - Infinite Moves
      - Infinite Boosters
      - Infinite Coins (Spend some)
      - Infinite Lives (Won't substract when you failed level)
      - Complete tasks without needing stars - Game Breaking for sure
      - Unlock Season Pass (by @NoFearGG) -- Go click the purchase button. It'll look like nothing happened. Leave season pass area. And go back. It'll show unlocked. And be saved that way


      🍏 Jailbreak iOS hacks: https://iosgods.com/topic/75434-homescapes-cheats-v776-5/

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/71443-homescapes-v776-jailed-cheats-3/
      • 2,531 replies
    • Traveler's Journey v1.0.2 Jailed Cheats +3
      Modded/Hacked App: Traveler's Journey By Xiamen Yiniao Game Technology Co.,Ltd.
      Bundle ID: com.traveler.journey
      App Store Link: https://apps.apple.com/us/app/travelers-journey/id6758603940?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

      - God Mode
      - Multiply Attack
      - Free iAP

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/207036-travelers-journey-v101-jailed-cheats-3/
      • 2 replies
    • [ Last Cloudia TW ] 最後的克勞迪亞 v6.13.0 Jailed Cheats +4
      Modded/Hacked App: 最後的克勞迪亞 By Hong Kong Bao Chuan Software Technology Limited
      Bundle ID: com.boltrend.cloudia
      iTunes Store Link: https://apps.apple.com/tw/app/%E6%9C%80%E5%BE%8C%E7%9A%84%E5%85%8B%E5%8B%9E%E8%BF%AA%E4%BA%9E/id1530784975?uo=4



      Hack Features:
      - God Mode
      - Infinite MP
      - Infinite SP
      - Infinite Ether


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/139142-last-cloudia-tw-%E6%9C%80%E5%BE%8C%E7%9A%84%E5%85%8B%E5%8B%9E%E8%BF%AA%E4%BA%9E-v161-jailed-cheats-4/


      iOS Hack Download Link: https://iosgods.com/topic/139142-last-cloudia-tw-%E6%9C%80%E5%BE%8C%E7%9A%84%E5%85%8B%E5%8B%9E%E8%BF%AA%E4%BA%9E-v1141-jailed-cheats-4/
      • 376 replies
    • Township: Farm & City Building v34.1.0 Jailed Cheats +2
      Modded/Hacked App: Township by PLR Worldwide Sales Limited
      Bundle ID: com.playrix.township-ios
      iTunes Store Link: https://apps.apple.com/us/app/township/id638689075?uo=4&at=1010lce4


      Hack Features:
      - Freeze Currencies

      EDIT: Please be aware that this maybe cause your account banned, please use with caution and don’t abuse


      iOS Hack Download Link: https://iosgods.com/topic/116584-arm64-township-farm-city-building-v852-jailed-cheats-2/
      • 1,839 replies
    • LAST CLOUDIA v6.13.0 Jailed Cheats +4
      Modded/Hacked App: LAST CLOUDIA By AIDIS Inc.
      Bundle ID: com.aidis.lastcloudiaen
      iTunes Store Link: https://apps.apple.com/us/app/last-cloudia/id1473588527?uo=4


      Hack Features:
      - God Mode
      - Infinite MP
      - Infinite SP
      - Infinite Ether


      iOS Hack Download Link: https://iosgods.com/topic/147069-last-cloudia-v201-jailed-cheats-4/
      • 444 replies
    • Rent Please! Landlord Sim Cheats v1.7.2 +2
      Modded/Hacked App: Rent Please! Landlord Sim By Shimmer Games Co., Ltd.
      Bundle ID: com.shimmergames.tenants.gb.en
      iTunes Store Link: https://apps.apple.com/us/app/rent-please-landlord-sim/id1645842987?uo=4


      Hack Features:
      - Infinite Currencies
      - No Ads


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/168311-rent-please-landlord-sim-v111-jailed-cheats-2/


      iOS Hack Download Link: https://iosgods.com/topic/168312-rent-please-landlord-sim-cheats-v111-2/
      • 167 replies
    • Gangstar Vegas Cheats v9.4.0 +4
      Modded/Hacked App: Gangstar Vegas - Mafia action By Gameloft
      Bundle ID: com.gameloft.gangstar4
      iTunes Store Link: https://apps.apple.com/us/app/gangstar-vegas-mafia-action/id571393580?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🤩 Hack Features

      - Infinite Currencies
      - Infinite Run ( To stop running turn off in menu then click run again )
      - Infinite Ammo / No Reload ( Required re-launching the game after purchasing new gun and enabled in menu before load into the game )
      - No Cops


      NOTE: Turn off wifi before playing


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/166702-gangstar-vegas-mafia-action-v791-jailed-cheats-3/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147734-gangstar-vegas-cheats-v800-4/
      • 1,041 replies
    • The Battle Cats v15.2.0 Jailed Cheats +2
      Modded/Hacked App: The Battle Cats by ponos corporation
      Bundle ID: jp.co.ponos.battlecatsen
      iTunes Store Link: https://apps.apple.com/us/app/the-battle-cats/id850057092?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - OHK Linked


      Jailbreak required hack(s): https://iosgods.com/topic/124448-arm64-the-battle-cats-cheats-all-versions-2/


      iOS Hack Download Link: https://iosgods.com/topic/124447-arm64-the-battle-cats-v1070-jailed-cheats-2/
      • 867 replies
    • Merge Crime: Mystery & Romance v1.14.0 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Merge Crime: Mystery & Romance By StandEgg Co., Ltd
      Bundle ID: com.standegg.mergecrime
      App Store Link: https://apps.apple.com/us/app/merge-crime-mystery-romance/id6746175307?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

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy

       

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

      - IK_IK

       

      📷 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.
      • 11 replies
    • Merge Crime: Mystery & Romance v1.14.0 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Merge Crime: Mystery & Romance By StandEgg Co., Ltd
      Bundle ID: com.standegg.mergecrime
      App Store Link: https://apps.apple.com/us/app/merge-crime-mystery-romance/id6746175307?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy
      • 11 replies
    • Mob Control +7 Mods [ Unlimited Currencies ]
      Mod APK Game Name: Mob Control
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.vincentb.MobControl

       

      🤩 Hack Features

      - Unlimited Coins -> Will increase instead of decrease.
      - Unlimited Skip'Its -> Will increase instead of decrease.
      - Unlimited Stars -> Earn some.
      - Unlimited Bricks
      - Unlimited Earnt Bricks
      - Unlimited Cards -> Will increase instead of decrease.
      - No Card Requirement
      • 19 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