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

    • Kritika: The White Knights v5.18.3 +12 Cheats
      Hacked App: Kritika: The White Knights By GAMEVIL Inc.
      iTunes Link: https://itunes.apple.com/us/app/kritika-the-white-knights/id865958296
      Bundle ID: com.gamevil.kritikam.ios.apple.global.normal


      Hack Features
      - Infinite Potions (Increase instead of decrease)
      - Infinite Mana
      - No Potion Cooldown
      - Instant EX Gauge Fill
      - God Mode in Stage Mode
      - God Mode in Tower & Monster Wave
      - God Mode in Arena & PvP (Untested)
      - Timer Hack*
      - Mao Support Always Active
      - 1 Hit Kill in Monster -> One Hit Kill was Replaced with "Monster Level 1"
      - Enemy Doesn't Attack
      - Boss Doesn't Attack
      - Enemy Doesn't Move
      - Boss Doesn't Move
      - Monster Level 1 -> Easy kills
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 3,104 replies
    • Westland Survival - Cowboy RPG v10.4.0 +7 [ Items Cheat ]
      Modded/Hacked App: Westland Survival - Cowboy RPG By HELIO LTD
      Bundle ID: com.heliogames.a1
      iTunes Store Link: https://apps.apple.com/us/app/westland-survival-cowboy-rpg/id1339238576?uo=4


      Hack Features:
      - Unlimited Energy / Instant Energy Refills
      - Unlock All Blueprints
      - Items Duplicate When Split / Items Hack
      - Unlimited Consumable Items
      - Unlimited Item Durability
      - God Mode / Never Die -> Linked with enemies. Useful for looting.
      - One Hit Kill / High Damage -> Linked with enemies. Use with caution.


      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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 448 replies
    • Chef & Friends: Cooking Game Cheats v1.35.5 +1
      Modded/Hacked App: Chef & Friends: Cooking Game By MYTONA Ltd.
      Bundle ID: com.mytona.cheftales
      iTunes Store Link: https://apps.apple.com/us/app/chef-friends-cooking-game/id1586951898?uo=4


      Hack Features:
      - Infinite Currencies (Hats, Coins, Gems)

      NOTE: May bug out the game so better try on your throw away account first 


      iOS Hack Download Link: https://iosgods.com/topic/178904-chef-friends-cooking-game-cheats-v141-1/
        • Thanks
        • Winner
        • Like
      • 32 replies
    • Cooking Diary Restaurant Game v2.44.2 Jailed Cheats +3
      Modded/Hacked App: Cooking Diary® Restaurant Game by MyTona Pte Ltd
      Bundle ID: com.mytonallc.cookingdiary
      iTunes Store Link: https://apps.apple.com/us/app/cooking-diary-restaurant-game/id1214763610?uo=4&at=1010lce4


      Hack Features:
      - Infinite Currencies (Get some)
      - Freeze Boosters


      iOS Hack Download Link: https://iosgods.com/topic/110310-arm64-cooking-diary-restaurant-game-v1160-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 697 replies
    • [ViP Hack] WarFriends v6.0.0 +6 Cheats
      Modded/Hacked App: WarFriends: PvP Shooter Game By Chillingo Ltd
      Bundle ID: com.chillingo.warfriends
      iTunes Link: https://itunes.apple.com/us/app/warfriends-pvp-shooter-game/id979873043


      Hack Features:
      - Debug Menu -> Most/Everything from previous hack has been patched/removed. However, it will still show you some in-game stuff.
      - Free Weapon Upgrades. Instant Weapon Upgrade Delivery Times!
      - Unlimited Clips/Ammo -> Works online & offline
      - No Weapon Reload / Unlimited Ammo in Clip -> Works online & offline
      - One Hit Kill Enemies / High Damage -> Buggy Online, works well offline. Linked with enemy, so hit them first.
      - Gun Fire Rate x1000 -> Shoot bullets really, really fast. Works online too, linked to enemy. One Hit Kill Alternative if you can aim.
      This hack is an In-Game Mod Menu (iGMM). In order to activate the Mod Menu, tap your screen with 3 fingers simultaneously.

       

      Non-Jailbroken Version of this hack: https://iosgods.com/topic/44193-warfriends-v140-3-cheats-ios-10/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,771 replies
    • Towerlands - tower defense TD v3.7.5 +2 Cheats
      Modded/Hacked App: Towerlands - tower defense TD By CHERNYE MEDVEDI, OOO
      Bundle ID: mobi.blackbears.ios.towerlands
      iTunes Store Link: https://apps.apple.com/us/app/towerlands-tower-defense-td/id1491901979?uo=4



      Hack Features:
      - Unlimited Gold
      - Unlimited Gems


      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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 349 replies
    • Fishing Clash v1.0.398 +3 Cheats
      Modded/Hacked App: Fishing Clash: Fish Game 2019 by Ten Square Games S.A.
      Bundle ID: com.tensquaregames.letsfish2
      iTunes Store Link: https://apps.apple.com/us/app/fishing-clash-fish-game-2019/id1151811380


      Hack Features:
      - Combo Always Active
      - Centered Line -> The line is always in the center zone. I didn't test enough but worked for 20 games. Duels too.
      - Line Never Breaks
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,345 replies
    • Legend of Solgard v2.53.0 - [ x Player Damage & More ]
      Modded/Hacked App: Legend of Solgard By King
      Bundle ID: com.midasplayer.apps.solgard
      iTunes Store Link: https://apps.apple.com/us/app/legend-of-solgard/id1281263906

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


      Hack Features:
      - x Player Damage - x1 - 30
      - God Mode

      All features are unlinked and only for player, you!
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 587 replies
    • Legend of Solgard v2.53.0 +3 Cheat [God Mode & Damage]
      Modded/Hacked App: Legend of Solgard By King
      Bundle ID: com.midasplayer.apps.solgard
      iTunes Store Link: https://itunes.apple.com/us/app/legend-of-solgard/id1281263906?mt=8&uo=4&at=1010lce4


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


      Hack Features:
      - x Player Damage - x1 - 30
      - God Mode / Never Die
      - Auto Kill Enemies

      All features are unlinked and only for player, you!
        • Agree
        • Thanks
        • Like
      • 200 replies
    • Hempire - Weed Growing Game [ Auto Updating ] - Unlimited Everything!
      Modded/Hacked App: Hempire - Weed Growing Game By LBC Studios Inc.
      Bundle ID: ca.lbcstudios.hempire
      iTunes Store Link: https://itunes.apple.com/us/app/hempire-weed-growing-game/id1139379843


      Hack Features:
      - Unlimited Currency - Currency Hack
      - Unlimited Storage
      -- Buy anything
      -- Free Rushing/Skipping

      This hack is an In-Game Mod Menu (iGMM). In order to activate the Mod Menu, tap on the iOSGods button found inside the app.
      This hack is using the new iOSGods Auto Updater. The hack will automatically update itself to the current app version you have installed on your iDevice.
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,047 replies
    • We Are Warriors! v1.55.0 Cheats +3
      Modded/Hacked App: We Are Warriors! By Lessmore UG haftungsbeschraenkt
      Bundle ID: com.vjsjlqvlmp.wearewarriors
      iTunes Store Link: https://apps.apple.com/us/app/we-are-warriors/id6466648550?uo=4

       

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


      Hack Features:
      - Unlimited everything
      - Auto complete task
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 164 replies
    • We Are Warriors! v1.55.0 Cheats +3
      Modded/Hacked App: We Are Warriors! By Lessmore UG haftungsbeschraenkt
      Bundle ID: com.vjsjlqvlmp.wearewarriors
      iTunes Store Link: https://apps.apple.com/us/app/we-are-warriors/id6466648550?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:
      - Unlimited everything
      - Auto complete task
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 93 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