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

    • Merge HomeTown: Merge Games v15 [ +5 Cheats ] Currency Max
      Modded/Hacked App: Merge HomeTown: Merge Games By AppGuruz
      Bundle ID: com.gt.hometown.mergegame
      App Store Link: https://apps.apple.com/us/app/merge-hometown-merge-games/id6450775072?uo=4


      Hack Feature

      - Cash

      - Gold

      - Keys

      - Energy

      - ADS Ticket
      • 1 reply
    • World Chef Cheats v3.1.0 +4
      Modded/Hacked App: World Chef By Socialpoint
      Bundle ID: worldchef
      iTunes Store Link: https://apps.apple.com/us/app/world-chef/id1010677881?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

      - Instant Cooking
      - Instant Eating
      - Free Missing Ingredients/Food Cost
      - Free Storage Upgrade Cost

       

      Non-Jailbroken Hack: https://iosgods.com/topic/163932-world-chef-v307-jailed-cheats-4/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/163904-world-chef-cheats-v307-4/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 62 replies
    • MuseDash Cheats v5.6.1 +3
      Modded/Hacked App: Muse Dash 喵斯快跑-跑酷游戏 By X.D. Network Inc.
      Bundle ID: com.xd.musedash
      iTunes Store Link: https://apps.apple.com/us/app/muse-dash-%E5%96%B5%E6%96%AF%E5%BF%AB%E8%B7%91-%E8%B7%91%E9%85%B7%E6%B8%B8%E6%88%8F/id1361473095?uo=4


      Hack Features:
      - All Songs Owned (It display Locked but you still can play it)
      - God Mode
      - Auto Dance

       
      Free Non-Jailbroken Hacks: https://iosgods.com/topic/88380-muse-dash-%E5%96%B5%E6%96%AF%E5%BF%AB%E8%B7%91-%E8%B7%91%E9%85%B7%E6%B8%B8%E6%88%8F-v153-jailed-cheats-2/

       
      Hack Download Link: https://iosgods.com/topic/71374-muse-dash-%E5%96%B5%E6%96%AF%E5%BF%AB%E8%B7%91-%E8%B7%91%E9%85%B7%E6%B8%B8%E6%88%8F-cheats-v153-4/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 339 replies
    • Adventure Chef v1.52.360 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Adventure Chef By Futurewave Games LLC
      Bundle ID: com.adventurechef
      App Store Link: https://apps.apple.com/us/app/adventure-chef/id6717580048?uo=4

       
      🤩 Hack Features

      - IAP FREE [ Buy Anything ] ADS
      - Gems
      - Cash
        • Like
      • 2 replies
    • Adventure Chef v1.52.360 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Adventure Chef By Futurewave Games LLC
      Bundle ID: com.adventurechef
      App Store Link: https://apps.apple.com/us/app/adventure-chef/id6717580048?uo=4


      🤩 Hack Features

      - IAP FREE [ Buy Anything ] ADS
      - Gems
      - Cash
        • Like
      • 5 replies
    • Only Grind: Loot & Fight v1.3.1 [ +11 Cheats ] Currency Max
      Modded/Hacked App: Only Grind: Loot & Fight By Chi Ngo
      Bundle ID: io.onlychads.onlygrind
      App Store Link: https://apps.apple.com/us/app/only-grind-loot-fight/id6499444042?uo=4

       
      🤩 Hack Features

      - IAP FREE [ Buy Anything ] ADS

      - Gems [ Earn Then Get ]

      - Success Rate Gems [ UP Then Get ]

      - Chest +5

      - Gold [ Sell Then Get ]

      - Gold [ Merge Gems Then Get ]

      - Gold [ Up Then Get ]

      - HP

      - DEF

      - ATK

      - Criti DMG
        • Like
      • 4 replies
    • Only Grind: Loot & Fight v1.3.1 [ +11 Jailed ] Currency Max
      Modded/Hacked App: Only Grind: Loot & Fight By Chi Ngo
      Bundle ID: io.onlychads.onlygrind
      App Store Link: https://apps.apple.com/us/app/only-grind-loot-fight/id6499444042?uo=4
       

      🤩 Hack Features

      - IAP FREE [ Buy Anything ] ADS

      - Gems [ Earn Then Get ]

      - Success Rate Gems [ UP Then Get ]

      - Chest +5

      - Gold [ Sell Then Get ]

      - Gold [ Merge Gems Then Get ]

      - Gold [ Up Then Get ]

      - HP

      - DEF

      - ATK

      - Criti DMG
        • Like
      • 0 replies
    • My Cafe — Restaurant game Cheats v2025081.1.761 +3
      Modded/Hacked App: My Cafe — Restaurant Game By Melsoft
      Bundle ID: com.Melesta.MyCafe
      iTunes Store Link: https://apps.apple.com/us/app/my-cafe-restaurant-game/id1068204657?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

      - Increase Game Speed
      - No Timer to Buy Energy
      - Custom Dice Value


      Notes:
      - DO NOT BUY VIP FOR OTHER FEATURES, IT HAS BEEN PATCHED AND NO LONGER WORK

       

      Non-Jailbroken Hack: https://iosgods.com/topic/134272-my-cafe-%E2%80%94-restaurant-game-v20250205684-3-cheats/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/130634-my-cafe-%E2%80%94-restaurant-game-cheats-v20250300691-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 659 replies
    • Simply Piano: Learn Piano Fast Modded v9.10.24 +1
      Modded/Hacked App: Simply Piano: Learn Piano Fast By Simply Ltd
      Bundle ID: com.joytunes.asla
      iTunes Store Link: https://apps.apple.com/us/app/simply-piano-learn-piano-fast/id1019442026?uo=4


      Hack Features:
      - PREMIUM
       

      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/68652-simply-piano-v975-jailed-mod-1/


      Hack Download Link: https://iosgods.com/topic/83369-simply-piano-learn-piano-fast-modded-all-versions-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,542 replies
    • Magic Tiles 3: Piano Game Cheats v12.081.002 +5
      Modded/Hacked App: Magic Tiles 3 by AMANOTES JOINT STOCK COMPANY
      Bundle ID: com.amazingmusic.pianoidol
      iTunes Store Link: https://itunes.apple.com/us/app/magic-tiles-3/id1145692161?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Infinite Currencies
      - No Ads
      - Infinite Lives
      - All Songs Owned
      - ViP


      Hack Download Link: https://iosgods.com/topic/82441-arm64-magic-tiles-3-cheats-v67047-4/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,029 replies
    • Dungeon of Gods Cheats v1.6.3 +3
      Modded/Hacked App: Dungeon of Gods By SuperPlanet corp.
      Bundle ID: com.superplanet.goddungeon
      App Store Link: https://apps.apple.com/us/app/dungeon-of-gods/id1611319102?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

      - Multiply Attack
      - Multiply Defense
      - God Mode

       

      Non-Jailbroken Hack: https://app.iosgods.com/store/appdetails/5865-dungeon-of-gods-hack

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/157059-dungeon-of-gods-cheats-v163-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 266 replies
    • The Secret of Cat Island Cheats v1.5.3 +2
      Modded/Hacked App: The Secret of Cat Island By LikeItGames Co., Ltd.
      Bundle ID: com.likeitgames.iOSAfterRain2
      App Store Link: https://apps.apple.com/us/app/the-secret-of-cat-island/id1599990384?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

      - Free Currencies
      - Unlock All Skins

       

      Non-Jailbroken Hack: https://iosgods.com/topic/155394-the-secret-of-cat-island-v153-jailed-cheats-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/155392-the-secret-of-cat-island-cheats-v153-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 35 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