Jump to content

Finding timer offset


steelabood1

16 posts in this topic

Recommended Posts

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...

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/
Share on other sites

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!

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/#findComment-1090534
Share on other sites

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.

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/#findComment-1090565
Share on other sites

@@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.

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/#findComment-1090581
Share on other sites

@@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.

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/#findComment-1090584
Share on other sites

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.

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/#findComment-1090599
Share on other sites

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!

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/#findComment-1090602
Share on other sites

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.

Link to comment
https://iosgods.com/topic/31919-finding-timer-offset/#findComment-1090607
Share on other sites

Archived

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

  • Our picks

    • World Conqueror 4 v2.5.0 +5 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: World Conqueror 4 By 悦 张
      Bundle ID: com.zhangyue.wc4
      iTunes Store Link: https://apps.apple.com/us/app/world-conqueror-4/id1258468290?uo=4


      Hack Features:
      - Unlimited Gold -> Earn or spend some.
      - Unlimited Medals -> Earn or spend some.
      - Unlimited Energy -> Earn or spend some.
      - Unlimited Industry Points -> Earn or spend some.
      - Unlimited Technology Points -> Earn or spend some.


      Jailbreak required hack(s): [Mod Menu Hack] World Conqueror 4 v2.5.0 +5 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Like
      • 1 reply
    • World Conqueror 4 v2.5.0 +5 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: World Conqueror 4 By 悦 张
      Bundle ID: com.zhangyue.wc4
      iTunes Store Link: https://apps.apple.com/us/app/world-conqueror-4/id1258468290?uo=4


      Hack Features:
      - Unlimited Gold -> Earn or spend some.
      - Unlimited Medals -> Earn or spend some.
      - Unlimited Energy -> Earn or spend some.
      - Unlimited Industry Points -> Earn or spend some.
      - Unlimited Technology Points -> Earn or spend some.


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] World Conqueror 4 v2.5.0 +5 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 2 replies
    • (ReverseBlue×Re-birthEnd) リバースブルー×リバースエンド v1.8.4 +3 Cheats
      Modded/Hacked App: リバースブルー×リバースエンド By Happy Elements K.K
      Bundle ID: jp.co.happyelements.rxr
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%83%AA%E3%83%90%E3%83%BC%E3%82%B9%E3%83%96%E3%83%AB%E3%83%BC-%E3%83%AA%E3%83%90%E3%83%BC%E3%82%B9%E3%82%A8%E3%83%B3%E3%83%89/id6504544938?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
      - No Deploy Cost


      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
        • Thanks
        • Winner
        • Like
      • 20 replies
    • Hero Hero Clicker - Idle Game v134 +2 Jailed Cheats
      Modded/Hacked App: Hero Hero Clicker - Idle Game By HNRQ FAITTA LTDA
      Bundle ID: com.babystone.heroheroclicker
      iTunes Store Link: https://apps.apple.com/us/app/hero-hero-clicker-idle-game/id6474022305?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
      - Free IAP


      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
        • Agree
        • Thanks
        • Winner
        • Like
      • 34 replies
    • Hero Hero Clicker - Idle Game v134 +2 Cheats
      Modded/Hacked App: Hero Hero Clicker - Idle Game By HNRQ FAITTA LTDA
      Bundle ID: com.babystone.heroheroclicker
      iTunes Store Link: https://apps.apple.com/us/app/hero-hero-clicker-idle-game/id6474022305?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
      - Free IAP


      Non-Jailbroken & No Jailbreak required hack(s): 


      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
      • 36 replies
    • Jetpack Joyride 2 v3.5.10 Jailed Cheats +1
      Modded/Hacked App: Jetpack Joyride 2 By Halfbrick
      Bundle ID: com.halfbrick.jetpackjoyride2
      iTunes Store Link: https://apps.apple.com/us/app/jetpack-joyride-2/id1598096399?uo=4


      Hack Features:
      - Infinite Currencies


      iOS Hack Download Link: https://iosgods.com/topic/141408-jetpack-joyride-2-v3410-jailed-cheats-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 206 replies
    • Alien Invasion: RPG Idle Space Cheats v4.03.01 +2
      Modded/Hacked App: Alien Invasion: RPG Idle Space By MULTICAST GAMES LIMITED
      Bundle ID: com.multicastgames.venomSurvive
      iTunes Store Link: https://apps.apple.com/us/app/alien-invasion-rpg-idle-space/id6443697602?uo=4


      Hack Features:
      - Infinite Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/167591-alien-invasion-rpg-idle-space-v204-jailed-cheats-1/


      iOS Hack Download Link: https://iosgods.com/topic/167589-alien-invasion-rpg-idle-space-cheats-v204-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 394 replies
    • Toy Blast Cheats v18340 +6
      Modded/Hacked App: Toy Blast By Peak Games
      Bundle ID: net.peakgames.amy
      iTunes Store Link: https://itunes.apple.com/us/app/toy-blast/id890378044?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Infinite Hearts
      - Infinite Coins
      - Infinite Boosters
      - Never Lose
      - High Score
      - Always 3 Stars


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/73056-arm64-toy-blast-v5431-jailed-cheats-3/


      Hack Download Link: https://iosgods.com/topic/73037-arm64-toy-blast-cheats-v5475-6/



      Credits:
      - @Laxus
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 631 replies
    • Travel Town - Merge Adventure Cheats v2.12.890 +1
      Modded/Hacked App: Travel Town By Magmatic Games Ltd
      Bundle ID: io.randomco.travel
      iTunes Store Link: https://apps.apple.com/us/app/travel-town/id1521236603?uo=4


      Hack Features:
      - Infinite Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/148953-travel-town-v231-jailed-cheats-1/

      iOS Hack Download Link: https://iosgods.com/topic/148951-travel-town-cheats-all-versions-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 130 replies
    • Hill Climb Racing 2 v1.64.2 Cheats +1
      Modded/Hacked App: Hill Climb Racing 2 By Fingersoft
      Bundle ID: com.fingersoft.hillclimbracing2
      iTunes Store Link: https://apps.apple.com/us/app/hill-climb-racing-2/id1146465836?uo=4


      Hack Features:
      - Freeze Coins
      - Freeze Gems
      - Freeze Scraps


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/108295-hill-climb-racing-2-v1611-jailed-cheats-2/


      iOS Hack Download Link: https://iosgods.com/topic/108298-hill-climb-racing-2-v1612-cheats-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 2,160 replies
    • Smurfs' Village Cheats v2.73.1 +1
      Modded/Hacked App: Smurfs' Village By Flashman Studios LLC
      Bundle ID: com.capcommobile.smurfs
      iTunes Store Link: https://itunes.apple.com/us/app/smurfs-village/id399648212?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Infinite Gold (Spend some)
      - Infinite SmurfBerries (Spend some)


      Hack Download Link: https://iosgods.com/topic/75948-arm64-smurfs-village-cheats-v1680-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 436 replies
    • Strongest Knight Cheats v1.09 +4
      Modded/Hacked App: Strongest Knight By Superlink Ltd.
      Bundle ID: com.idlemaster.hero
      iTunes Store Link: https://apps.apple.com/us/app/strongest-knight/id6738113239?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Freeze Currencies
      - No Ads (Don't use the deb cheat unless you complete tutorial -- Finish use 4 ads boost quest)
       


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/190406-strongest-knight-v106-jailed-cheats-4/


      iOS Hack Download Link: https://iosgods.com/topic/190404-strongest-knight-cheats-v106-4/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 22 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