Jump to content

16 posts in this topic

Recommended Posts

Posted

Hey guys,

 

Well, as some of you might know, I am totally noob in modding. So please bear with me..

 

I am trying to stop a timer in a game. However, I do not know how to I find it. Please keep in mind that strings method does not work because I cannot find anything related.

 

My question is, is there a method to do this using GDB + IDA pro ? Or, is there another method to do this?

 

Thanks...

Posted (edited)

First, start the game with the timer counting down then pause. Go into whatever game editor and search for all value types. Many different games store many different timers as floats, 2 bytes, 4 bytes, or 8 bytes. Then, search for an unknown initial value. After you find your (many) results, unpause the game, allow the timer to decrease, and go into your game editor of choice and scan for a decreased value. If it is possible to add time in the game, you could then search for an increased value to greatly narrow the results. This should, lead you to the address that controls the timer. From there, you could either freeze the value or nop the code that decreases it. 

Edit: Be back in an hour or two  :yes: 

Edit2: Back!

Updated by XxGam3Ma2t3rxX
Posted

First, start the game with the timer counting down then pause. Go into whatever game editor and search for all value types. Many different games store many different timers as floats, 2 bytes, 4 bytes, or 8 bytes. Then, search for an unknown initial value. After you find your (many) results, unpause the game, allow the timer to decrease, and go into your game editor of choice and scan for a decreased value. If it is possible to add time in the game, you could then search for an increased value to greatly narrow the results. This should, lead you to the address that controls the timer. From there, you could either freeze the value or nop the code that decreases it. 

Edit: Be back in an hour or two  :yes: 

I found it I will try to nop it and get back to u.

Posted (edited)

@@steelabood1

Oh this is also important as well!

Time is stored in two ways and two types. 

The first type is a float or double representing seconds. 
When searching this method, always search a range between plus/minus one of the display time. 
So for example > 5:43, you want to search between 342 and 344

The second type is a 4-byte or 8-byte representing milliseconds. 
Similarly, you want to search a range of values. 
So for example > 5:43, you want to search between 342000 and 344000

In addition to these types, games don't always store the value as total time left. 
Sometimes, they use total elapsed time and count up from zero. 
So if the game starts at 10:00, when it reaches 5:43, you want to search ranges around 4:17
Increase that range to 3 seconds just in case buddy ;).


Well, nopping the instruction does not work. When I nop it, in gdb I receive a lot of illegal instructions when I try to continue the game.

Illegal instructions? As in it does not let you continue?

Edit: What game are you trying to do this on? If it is server-sided this will not work most of the time. However sometimes you can slip it in and freeze the timer for games such as pokemon shuffle. However I believe the timer is not server sided until you finish that puzzle match and then the data you just got from completing that round is transferred to the server. Everything else on that game such as their gem system aka diamonds would not be hackable. Coins can be with scripts that multiply them.

Updated by XxGam3Ma2t3rxX
Posted (edited)

@@steelabood1

Oh this is also important as well!

Time is stored in two ways and two types. 

 

The first type is a float or double representing seconds. 

When searching this method, always search a range between plus/minus one of the display time. 

So for example > 5:43, you want to search between 342 and 344

 

The second type is a 4-byte or 8-byte representing milliseconds. 

Similarly, you want to search a range of values. 

So for example > 5:43, you want to search between 342000 and 344000

 

In addition to these types, games don't always store the value as total time left. 

Sometimes, they use total elapsed time and count up from zero. 

So if the game starts at 10:00, when it reaches 5:43, you want to search ranges around 4:17

Increase that range to 3 seconds just in case buddy ;).

Illegal instructions? As in it does not let you continue?

Edit: What game are you trying to do this on? If it is server-sided this will not work most of the time. However sometimes you can slip it in and freeze the timer for games such as pokemon shuffle.

Yeah I found time address using seconds and it was DW. I found two addresses. one leads me to an instruction and the other leads me to another instruction in the same subroutine. I basically want to speed up the timer or decrease the "time left" until the thing happens. I do not know how to go about that.

@@steelabood1

Illegal instructions? As in it does not let you continue?

Edit: What game are you trying to do this on? If it is server-sided this will not work most of the time. However sometimes you can slip it in and freeze the timer for games such as pokemon shuffle. However I believe the timer is not server sided until you finish that puzzle match and then the data you just got from completing that round is transferred to the server. Everything else on that game such as their gem system aka diamonds would not be hackable. Coins can be with scripts that multiply them.

I am trying to hack Rodeo Stampede, and I do not think it is server sided because I was able to hack the coins + play offline.

Updated by steelabood1
Posted (edited)

Yeah I found time address using seconds and it was DW. I found two addresses. one leads me to an instruction and the other leads me to another instruction in the same subroutine. I basically want to speed up the timer or decrease the "time left" until the thing happens. I do not know how to go about that.

I am trying to hack Rodeo Stampede, and I do not think it is server sided because I was able to hack the coins + play offline.

Your stumping me...The timer could be a different byte value haha.

However considering iGG or iGameGuardian is the same thing as cheat engine maybe this example can help you out some.

The assasins creed series was built like this for example since many failed to adjust the timers for the series

Countdown and stopwatch timers for this game are built this way: 

Two 8byte integers. One second is 30000

 

While initializing

- stopwatch: value1 = systemtime, value2 = systemtime 

- countdown: value1 = systemtime, value2 = systemtime + 30000*startingTimerValueInSeconds 

 

For "stopwatch" you see 00:00.00 on screen. For "countdown" you see 00:45.00 on screen (example). 

 

Every cycle

- stopwatch: value2 = systemtime, onscreenstring = converttohumanreadabletime( (value2 - value1)/30000 ) 

- countdown: value1 = systemtime, onscreenstring = converttohumanreadabletime( (value2 - value1)/30000 ) 

 

The problem is..the timer can be

- ANY TYPE 

- one value increasing (or decreasing) from 0(or some non zero value) up to (down to) some non zero value (or zero). <<< Pretty sure this seems to be your issue

- two values (two integers, or two floating point). Both are initialized. Only one is changing every cycle. Every cycle there is calculated difference, and it is converted to other type. At the end, it is converted to string or progress bar width, or arrow angle, or sand, or .... whatever. 

- three, four or even more 

 

Then there are temporary values, that said I looked into your game a bit and it seems scripting might be best for this scenario rather than an engine of any sort.

Updated by XxGam3Ma2t3rxX
Posted

Your stumping me...The timer could be a different byte value haha.

However considering iGG or iGameGuardian is the same thing as cheat engine maybe this example can help you out some.

The assasins creed series was built like this for example since many failed to adjust the timers for the series

Countdown and stopwatch timers for this game are built this way: 

Two 8byte integers. One second is 30000

 

While initializing

- stopwatch: value1 = systemtime, value2 = systemtime 

- countdown: value1 = systemtime, value2 = systemtime + 30000*startingTimerValueInSeconds 

 

For "stopwatch" you see 00:00.00 on screen. For "countdown" you see 00:45.00 on screen (example). 

 

Every cycle

- stopwatch: value2 = systemtime, onscreenstring = converttohumanreadabletime( (value2 - value1)/30000 ) 

- countdown: value1 = systemtime, onscreenstring = converttohumanreadabletime( (value2 - value1)/30000 ) 

 

The problem is..the timer can be

- ANY TYPE 

- one value increasing (or decreasing) from 0(or some non zero value) up to (down to) some non zero value (or zero). <<< Pretty sure this seems to be your issue

- two values (two integers, or two floating point). Both are initialized. Only one is changing every cycle. Every cycle there is calculated difference, and it is converted to other type. At the end, it is converted to string or progress bar width, or arrow angle, or sand, or .... whatever. 

- three, four or even more 

 

Then there are temporary values, that said I looked into your game a bit and it seems scripting might be best for this scenario rather than an engine of any sort.

Well, as I am new to all of this, I have to read what you wrote carefully and try to understand it. Thanks for your help!

Posted (edited)

Well, as I am new to all of this, I have to read what you wrote carefully and try to understand it. Thanks for your help!

Sure. I am gonna take a shower my friend. Will add a note when I am back.

Edit: Back @@steelabood1

Back to this case, I feel like a script should be better as that is what a lot of these timer hacks use is scripts, now do not get me wrong some timer hacks use engines such as cheat engine but it is more-over a script which involves hex editing, javascript knowledge, etc.

Updated by XxGam3Ma2t3rxX

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

    • Idle Outpost: Business Game v1.21.8 +6 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Idle Outpost: Business Game By AppQuantum Publishing Ltd
      Bundle ID: com.rockbite.zombieoutpost
      App Store Link: https://apps.apple.com/us/app/idle-outpost-business-game/id6463128982?uo=4

       
       

      🤩 Hack Features

      - Freeze Coins
      - Freeze Gems
      - Cheap Upgrades

      VIP
      - 10k Gems -> Spend some.
      - Unlimited Gems -> Spend some.
      - Free Shopping -> Currencies will go negative.
      • 108 replies
    • Idle Outpost: Business Game v1.21.8 +6 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Idle Outpost: Business Game By AppQuantum Publishing Ltd
      Bundle ID: com.rockbite.zombieoutpost
      App Store Link: https://apps.apple.com/us/app/idle-outpost-business-game/id6463128982?uo=4

       
       

      🤩 Hack Features

      - Freeze Coins
      - Freeze Gems
      - Cheap Upgrades

      VIP
      - 10k Gems -> Spend some.
      - Unlimited Gems -> Spend some.
      - Free Shopping -> Currencies will go negative.
      • 111 replies
    • Pal Go: Tower Defense TD v0.3.80 [+7 Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      🚀 Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      • 49 replies
    • Pal Go: Tower Defense TD v0.3.80 [+7 Jailed Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       

      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
      • 76 replies
    • Survivor Idle Run: Z-RPG Game v1.2.1 [+4 Jailed Cheats]
      Modded/Hacked App: Survivor Idle Run: Z-RPG Game By Midnite SRL
      Bundle ID: games.midnite.sri
      App Store Link: https://apps.apple.com/us/app/survivor-idle-run-z-rpg-game/id1666329575?uo=4



      🤩 Hack Features

      - Never Die
      - Freeze Currency (Always Will Increase)
      - Activate ViP
      - No Ads
      • 1 reply
    • Survivor Idle Run: Z-RPG Game v1.2.1 [+4 Cheats]
      Modded/Hacked App: Survivor Idle Run: Z-RPG Game By Midnite SRL
      Bundle ID: games.midnite.sri
      App Store Link: https://apps.apple.com/us/app/survivor-idle-run-z-rpg-game/id1666329575?uo=4



      🤩 Hack Features

      - Never Die
      - Freeze Currency (Always Will Increase)
      - Activate ViP
      - No Ads
      • 2 replies
    • Wukong's Arsenal:Rogue RPG v1.8.3 [+3 Cheats]
      Modded/Hacked App: Wukong's Arsenal:Rogue RPG By HangZhou Mai Di Wen Network Technology Co., Ltd
      Bundle ID: com.medivhgame.wukongfIght.ios
      App Store Link: https://apps.apple.com/us/app/wukongs-arsenal-rogue-rpg/id6733239805?uo=4

       

      🤩 Hack Features

      - Never Die
      - Unlimited Currency
      - Remove Ads
      • 10 replies
    • Wukong's Arsenal:Rogue RPG v1.8.3 [+3 Jailed Cheats]
      Modded/Hacked App: Wukong's Arsenal:Rogue RPG By HangZhou Mai Di Wen Network Technology Co., Ltd
      Bundle ID: com.medivhgame.wukongfIght.ios
      App Store Link: https://apps.apple.com/us/app/wukongs-arsenal-rogue-rpg/id6733239805?uo=4



      🤩 Hack Features

      - Never Die
      - Unlimited Currency
      - Remove Ads
      • 9 replies
    • Call of Antia: Match 3 RPG v4.0.21 +2 Jailed Cheats
      Modded/Hacked App: Call of Antia: Match 3 RPG By FunPlus International AG
      Bundle ID: com.funplus.coa
      App Store Link: https://apps.apple.com/us/app/call-of-antia-match-3-rpg/id1583719419?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

      - Damage Multiplier
      - Defense Multiplier

       

      ⬇️ iOS Hack Download IPA 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/#findComment-78119'>hidden content & download link</a>. 👀







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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 8: 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. 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 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
      • 16 replies
    • Call of Antia: Match 3 RPG v4.0.21 +2 Cheats
      Modded/Hacked App: Call of Antia: Match 3 RPG By FunPlus International AG
      Bundle ID: com.funplus.coa
      App Store Link: https://apps.apple.com/us/app/call-of-antia-match-3-rpg/id1583719419?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
      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/#findComment-78119'>hidden content & download link</a>. 👀







       

      📖 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.
      • 8 replies
    • Superhero Idle: Strike League v0.11.2 [+6 Jailed Cheats]
      Modded/Hacked App: Superhero Idle: Strike League By Midnite SRL
      Bundle ID: games.midnite.sid
      App Store Link: https://apps.apple.com/us/app/superhero-idle-strike-league/id6449540121?uo=4



      🤩 Hack Features

      - Never Die
      - One Hit Kill
      - Freeze Currency (Always Will Increase Cash, Gem)
      - Unlimited Skip Ads
      - Activate ViP
      - No Ads
      • 0 replies
    • Superhero Idle: Strike League v0.11.2 [+6 Cheats]
      Modded/Hacked App: Superhero Idle: Strike League By Midnite SRL
      Bundle ID: games.midnite.sid
      App Store Link: https://apps.apple.com/us/app/superhero-idle-strike-league/id6449540121?uo=4



      🤩 Hack Features

      - Never Die
      - One Hit Kill
      - Freeze Currency (Always Will Increase Cash, Gem)
      - Unlimited Skip Ads
      - Activate ViP
      - No Ads
      • 3 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