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

    • Puzzle & Dragons (English) v22.3.0 Jailed Cheats +2
      Modded/Hacked App: Puzzle & Dragons (English) By GungHo Online Entertainment, INC.
      Bundle ID: jp.gungho.padEN
      iTunes Store Link: https://apps.apple.com/us/app/puzzle-dragons-english/id563474464?uo=4


      Hack Features:
      - God Mode
      - One Hit Kill


      Jailbreak required hack(s): https://iosgods.com/topic/133984-puzzle-dragons-japan-english-cheats-all-versions-3/


      iOS Hack Download Link: https://iosgods.com/topic/135066-puzzle-dragons-english-v1931-jailed-cheats-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 316 replies
    • [ Puzzle & Dragons KR ] 퍼즐앤드래곤 v22.3.0 Jailed Cheats +2
      Modded/Hacked App: 퍼즐앤드래곤 By GungHo Online Entertainment, INC.
      Bundle ID: jp.gungho.padKO
      iTunes Store Link: https://apps.apple.com/kr/app/%ED%8D%BC%EC%A6%90%EC%95%A4%EB%93%9C%EB%9E%98%EA%B3%A4/id588637521?uo=4


      Hack Features:
      - God Mode
      - One Hit Kill


      Jailbreak required hack(s): https://iosgods.com/topic/133984-puzzle-dragons-japan-english-cheats-all-versions-3/


      iOS Hack Download Link: https://iosgods.com/topic/146388-puzzle-dragons-korea-%ED%8D%BC%EC%A6%90%EC%95%A4%EB%93%9C%EB%9E%98%EA%B3%A4-v1920-jailed-cheats-2/
        • Agree
        • Thanks
        • Winner
        • Like
      • 23 replies
    • Skullgirls Fighting RPG V7.3.3 [ +6 Jailed ] Auto Win
      Modded/Hacked App: Skullgirls: Fighting RPG By Autumn Games, LLC
      Bundle ID: com.autumn.skullgirls
      iTunes Store Link: https://apps.apple.com/us/app/skullgirls-fighting-rpg/id1280762571?uo=4


      Hack Features:

      - Auto win

      - Damage [ One HiT WiN ]

      - Energy Max

      - Skill

      - Enemy Disable

      - Goals Claimed [ Free Pass Only ]
        • Informative
        • Thanks
        • Winner
        • Like
      • 38 replies
    • Skullgirls Fighting RPG V7.3.3 [ +6 Cheats ] Auto Win
      Modded/Hacked App: Skullgirls: Fighting RPG By Autumn Games, LLC
      Bundle ID: com.autumn.skullgirls
      iTunes Store Link: https://apps.apple.com/us/app/skullgirls-fighting-rpg/id1280762571?uo=4


      Hack Features:
      - Auto win

      - Damage [ One HiT WiN ]

      - Energy Max

      - Skill

      - Enemy Disable

      - Goals Claimed [ Free Pass Only ]
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 127 replies
    • Fortress Saga: AFK RPG Cheats v1.8.09 +5
      Modded/Hacked App: Fortress Saga: AFK RPG By cookapps
      Bundle ID: com.cookapps.bm.fortresssaga
      iTunes Store Link: https://apps.apple.com/us/app/fortress-saga-afk-rpg/id6446308106?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
      - Freeze Currencies
      - PREMIUM
      - No Ads

       

      Non-Jailbroken Hack: https://iosgods.com/topic/184193-fortress-saga-afk-rpg-v1800-jailed-cheats-3/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/178933-fortress-saga-afk-rpg-cheats-v1801-5/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 364 replies
    • Prison Empire Tycoon-Idle Game Cheats v3.9.2 +2
      Modded/Hacked App: Prison Empire Tycoon-Idle Game by Digital Things Sociedad Limitada
      Bundle ID: com.codigames.idle.prison.empire.manager.tycoon
      iTunes Store Link: https://apps.apple.com/us/app/prison-empire-tycoon-idle-game/id1508490923?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - No Ads


      Non-Jailbroken & No Jailbreak required hack(s):  https://iosgods.com/topic/128324-arm64-prison-empire-tycoon%EF%BC%8Didle-game-v102-jailed-cheats-2/

       
      iOS Hack Download Link: https://iosgods.com/topic/128322-arm64-prison-empire-tycoon%EF%BC%8Didle-game-cheats-all-versions-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,161 replies
    • Left to Survive: Zombie Games Cheats v7.6.0 +10 Hacks
      Modded/Hacked App: Left to Survive: Zombie TPS By MY COM
      Bundle ID: com.glu.zbs
      iTunes Store Link: https://apps.apple.com/us/app/left-to-survive-zombie-tps/id1090501422

      Hack Features:
      - No Bullet Disperse 
      - Unlimited Ammo
      - No Recoil
      - Increased Fire-rate 

      - One Hit Campaign 
      - Grenades and Med-kits Dont Subtract
      - God Mode
      - God Mode PVP

      - Unlock Chapters early 
      - Weapons Unlocked Ready to buy 


      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
      • 1,592 replies
    • [ Seven Deadly Sins KR ] 일곱 개의 대죄: GRAND CROSS Cheats v8.6.72 +5
      Modded/Hacked App: 일곱 개의 대죄: GRAND CROSS By Netmarble Corporation
      Bundle ID: com.netmarble.nanakr
      iTunes Store Link: https://apps.apple.com/kr/app/%EC%9D%BC%EA%B3%B1-%EA%B0%9C%EC%9D%98-%EB%8C%80%EC%A3%84-grand-cross/id1449552940?uo=4


      Hack Features:
      - God Mode
      - One Hit Kill
      - Multiply Attack
      - Multiply Defense
      - Make Enemies God Mode for some quests


      iOS Hack Download Link: https://iosgods.com/topic/154899-seven-deadly-sins-kr-%EC%9D%BC%EA%B3%B1-%EA%B0%9C%EC%9D%98-%EB%8C%80%EC%A3%84-grand-cross-cheats-v750-5/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 177 replies
    • Zooba: Zoo Battle Royale Game v5.19.0 Jailed Cheats +2
      Modded/Hacked App: Zooba: Zoo Battle Royale Games By Wildlife Studios Limited
      Bundle ID: com.fungames.battleroyale
      iTunes Store Link: https://apps.apple.com/us/app/zooba-zoo-battle-royale-games/id1459402952?uo=4


      Hack Features:
      - Map Hacks
      - Allow Shoot in Water


      Jailbreak required hack(s): https://iosgods.com/topic/131104-arm64-zooba-zoo-battle-royale-game-cheats-all-versions-2/


      iOS Hack Download Link: https://iosgods.com/topic/131134-arm64-zooba-zoo-battle-royale-game-v320-jailed-cheats-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,301 replies
    • The Seven Deadly Sins Cheats v2.81.0 +5
      Modded/Hacked App: The Seven Deadly Sins by Netmarble Corporation
      Bundle ID: com.netmarble.nanagb
      iTunes Store Link: https://apps.apple.com/us/app/the-seven-deadly-sins/id1475440231?uo=4&at=1010lce4


      Hack Features:
      - God Mode
      - OHK
      - Infinite MP


      iOS Hack Download Link: https://iosgods.com/topic/131686-arm64-the-seven-deadly-sins-cheats-v117-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 2,051 replies
    • Zombastic: Time to Survive v1.12.4 [ +1+++ Jailed ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Thanks
        • Winner
        • Like
      • 52 replies
    • Zombastic: Time to Survive v1.12.4 [ +1+++ Cheats ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      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
      • 50 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