Jump to content

18 posts in this topic

Recommended Posts

Posted

am learning so i need help with "for noob" explanation

Here is function in Ida PRO... that i need to change to get COIN INCREASE instead of decrease... AND to get unlimited coins but not to go on negative.... if you can get me both scenarios and functions and explanation... THANKS... <3

R1 Holds Coin value....

text:004CF252 loc_4CF252                              ; CODE XREF: sub_4CEE7C+3CCj
__text:004CF252                 ADD.W           R0, R4, R11,LSL#2 ; Rd = Op1 + Op2
__text:004CF256                 LDR                R1, [SP,#0x34+var_2C] ; Load from Memory
__text:004CF258                 STR                 R1, [R0,#0x10] ; Store to Memory
__text:004CF25A                LDR.W           R0, [R8,#0x30] ; Load from Memory
__text:004CF25E                 ADDS             R0, #1  ; Rd = Op1 + Op2
__text:004CF260                 STR.W            R0, [R8,#0x30] ; Store to Memory
__text:004CF264                 ADD               SP, SP, #0x1C ; Rd = Op1 + Op2
__text:004CF266                 POP.W           {R8,R10,R11} ; Pop registers
__text:004CF26A                 POP               {R4-R7,PC} ; Pop registers

Posted
text:004CF252 loc_4CF252                              ; CODE XREF: sub_4CEE7C+3CCj
__text:004CF252                 ADD.W           R0, R4, R11,LSL#2 ; Rd = Op1 + Op2
__text:004CF256                 LDR                R1, [SP,#0x34+var_2C] ; Load from Memory
__text:004CF258                 STR                 R1, [R0,#0x10] ; Store to Memory
__text:004CF25A                LDR.W           R0, [R8,#0x30] ; Load from Memory
__text:004CF25E                 ADDS             R0, #1  ; Rd = Op1 + Op2
__text:004CF260                 STR.W            R0, [R8,#0x30] ; Store to Memory
__text:004CF264                 ADD               SP, SP, #0x1C ; Rd = Op1 + Op2
__text:004CF266                 POP.W           {R8,R10,R11} ; Pop registers
__text:004CF26A                 POP               {R4-R7,PC} ; Pop registers

to

text:004CF252 loc_4CF252                              ; CODE XREF: sub_4CEE7C+3CCj
__text:004CF252                 ADD.W           R0, R4, R11,LSL#2 ; Rd = Op1 + Op2
__text:004CF256                 LDR                R1, [SP,#0x34+var_2C] ; Load from Memory
__text:004CF258                 STR                 R7, [R0,#0x10] ; Store to Memory  <------->
__text:004CF25A                LDR.W           R0, [R8,#0x30] ; Load from Memory
__text:004CF25E                 ADDS             R0, #1  ; Rd = Op1 + Op2
__text:004CF260                 STR.W            R0, [R8,#0x30] ; Store to Memory
__text:004CF264                 ADD               SP, SP, #0x1C ; Rd = Op1 + Op2
__text:004CF266                 POP.W           {R8,R10,R11} ; Pop registers
__text:004CF26A                 POP               {R4-R7,PC} ; Pop registers

 

What this does is stores R7 instead of normal coin vlaue

  • Informative 1
Posted
5 minutes ago, Ted2 said:

text:004CF252 loc_4CF252                              ; CODE XREF: sub_4CEE7C+3CCj
__text:004CF252                 ADD.W           R0, R4, R11,LSL#2 ; Rd = Op1 + Op2
__text:004CF256                 LDR                R1, [SP,#0x34+var_2C] ; Load from Memory
__text:004CF258                 STR                 R1, [R0,#0x10] ; Store to Memory
__text:004CF25A                LDR.W           R0, [R8,#0x30] ; Load from Memory
__text:004CF25E                 ADDS             R0, #1  ; Rd = Op1 + Op2
__text:004CF260                 STR.W            R0, [R8,#0x30] ; Store to Memory
__text:004CF264                 ADD               SP, SP, #0x1C ; Rd = Op1 + Op2
__text:004CF266                 POP.W           {R8,R10,R11} ; Pop registers
__text:004CF26A                 POP               {R4-R7,PC} ; Pop registers

to

text:004CF252 loc_4CF252                              ; CODE XREF: sub_4CEE7C+3CCj
__text:004CF252                 ADD.W           R0, R4, R11,LSL#2 ; Rd = Op1 + Op2
__text:004CF256                 LDR                R1, [SP,#0x34+var_2C] ; Load from Memory
__text:004CF258                 STR                 R7, [R0,#0x10] ; Store to Memory  <------->
__text:004CF25A                LDR.W           R0, [R8,#0x30] ; Load from Memory
__text:004CF25E                 ADDS             R0, #1  ; Rd = Op1 + Op2
__text:004CF260                 STR.W            R0, [R8,#0x30] ; Store to Memory
__text:004CF264                 ADD               SP, SP, #0x1C ; Rd = Op1 + Op2
__text:004CF266                 POP.W           {R8,R10,R11} ; Pop registers
__text:004CF26A                 POP               {R4-R7,PC} ; Pop registers

 

What this does is stores R7 instead of normal coin vlaue

will try that now with HxD.... to see does it works...

also, how i can compile that in DEB tweak???

Posted
9 minutes ago, Goran said:

will try that now with HxD.... to see does it works...

also, how i can compile that in DEB tweak???

U need to do code injection. See tutorial section for how to do that.

Posted
3 minutes ago, Ted2 said:

U need to do code injection. See tutorial section for how to do that.

ok, but this function is not good... Game starts, but on loading screen it just stays on COIN DOZER LOADING :)

and nothing happens, no crash, no game, just stay ike that... can you try another one??? some other code... :) maybe, that coins just increase instead of decrease... or R7 but in some other way.... :)

Posted
1 minute ago, Goran said:

ok, but this function is not good... Game starts, but on loading screen it just stays on COIN DOZER LOADING :)

and nothing happens, no crash, no game, just stay ike that... can you try another one??? some other code... :) maybe, that coins just increase instead of decrease... or R7 but in some other way.... :)

Is there any CMP near the function?

Posted
27 minutes ago, Goran said:

am learning so i need help with "for noob" explanation

Here is function in Ida PRO... that i need to change to get COIN INCREASE instead of decrease... AND to get unlimited coins but not to go on negative.... if you can get me both scenarios and functions and explanation... THANKS... <3

R1 Holds Coin value....

text:004CF252 loc_4CF252                              ; CODE XREF: sub_4CEE7C+3CCj
__text:004CF252                 ADD.W           R0, R4, R11,LSL#2 ; Rd = Op1 + Op2
__text:004CF256                 LDR                R1, [SP,#0x34+var_2C] ; Load from Memory
__text:004CF258                 STR                 R1, [R0,#0x10] ; Store to Memory
__text:004CF25A                LDR.W           R0, [R8,#0x30] ; Load from Memory
__text:004CF25E                 ADDS             R0, #1  ; Rd = Op1 + Op2
__text:004CF260                 STR.W            R0, [R8,#0x30] ; Store to Memory
__text:004CF264                 ADD               SP, SP, #0x1C ; Rd = Op1 + Op2
__text:004CF266                 POP.W           {R8,R10,R11} ; Pop registers
__text:004CF26A                 POP               {R4-R7,PC} ; Pop registers

if all this is for game hacks then count me out :facepalm:

  • Haha 1
Posted
8 minutes ago, Ted2 said:

Try NOP ' 0x4cf248' 

 

Also, why do u got all those ;load from memory?

Done there NOP ' 0x4cf248'  C0 46 but game start loading, does not freeze, but after some load crash... :)

 

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

    • Ice Age Adventures Cheats v2.0.1 +1
      Modded/Hacked App: Ice Age Adventures By Gameloft
      Bundle ID: com.gameloft.iceageadventures
      App Store Link: https://apps.apple.com/us/app/ice-age-adventures/id632437966?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 Store (not Free iAP)



      Free Non-Jailbroken Hack: https://iosgods.com/topic/147897-ice-age-adventures-v201-jailed-cheats-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147809-ice-age-adventures-cheats-v201-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 34 replies
    • Ice Age Village Cheats v3.6.4 +1
      Modded/Hacked App: Ice Age Village By Gameloft
      Bundle ID: com.gameloft.IceAge
      App Store Link: https://apps.apple.com/us/app/ice-age-village/id467577200?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 Store (not Free iAP)

       

      Free Non-Jailbroken Hack: https://iosgods.com/topic/147806-ice-age-village-v364-jailed-cheats-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147802-ice-age-village-cheats-v364-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 46 replies
    • Mr Autofire Cheats v4.0.1 +3 [ God Mode & More ]
      Modded/Hacked App: Mr Autofire By Lightheart Entertainment Oy
      Bundle ID: games.lightheart.mrautofire
      iTunes Store Link: https://apps.apple.com/us/app/mr-autofire/id1483457500?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

      - God Mode 
      - One Hit Kill
      - Free Store

       

      Non-Jailbroken Hack: https://iosgods.com/topic/134805-mr-autofire-v380-jailed-cheats-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/134788-mr-autofire-cheats-v380-3-god-mode-more/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 635 replies
    • Grim Soul: Survival v7.3.3 +19 Cheats [Unlimited Currencies + More]
      Modded/Hacked App: Grim Soul: Survival By Andrey Pryakhin
      Bundle ID: fantasy.survival.game.rpg
      iTunes Store Link: https://itunes.apple.com/us/app/grim-soul-survival/id1366215798


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


      Hack Features:
      - Unlimited Thalers/Coins & Crafting Points - Once enabled, purchase something using coins & use a craft point so the currencies stick, then disable this feature.
      - Unlimited Storage Items - Taking storage items will increase them.
      - Unlimited Energy / Instant Energy Refills - Will refill your energy once you run to another location.
      - Godmode - Unlinked. Health will still decrease but you won't die.
      - One-Hit Kill - Linked to the enemy. Would recommend enabling 'Godmode'.
      - Increased Attack Range - Allows you to kill enemies from some distance away.
      - Free Crafting - Will allow you to craft items without the required materials.
      - No Crafting Level Requirement
      - Free Construction
      - Items Duplicate When Split
      - Unlimited Item Durability
      - x2 Player Speed
      - x3 Player Speed
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 5,054 replies
    • Hero Z: Idle defense v0.0.7 [+2 Cheats]
      Modded/Hacked App: Hero Z: Idle defense By CYBERJOY LIMITED
      Bundle ID: com.cyberjoy.heroz
      App Store Link: https://apps.apple.com/us/app/hero-z-idle-defense/id6478379131?uo=4



      🤩 Hack Features

      - Never Die
      - Activate Priv Pass (You can't claim diamonds but all the features enabled. Skip ads, More stamina cap etc.)
       
        • Haha
        • Thanks
        • Winner
      • 2 replies
    • Hero Z: Idle defense v0.0.7 [+2 Jailed Cheats]
      Modded/Hacked App: Hero Z: Idle defense By CYBERJOY LIMITED
      Bundle ID: com.cyberjoy.heroz
      App Store Link: https://apps.apple.com/us/app/hero-z-idle-defense/id6478379131?uo=4



      🤩 Hack Features

      - Never Die
      - Activate Priv Pass (You can't claim diamonds but all the features enabled. Skip ads, More stamina cap etc.)
        • Winner
      • 1 reply
    • Jolly Match 3 - Puzzle Game v1.0.1884 [ +5 Cheats ] Auto Win
      Modded/Hacked App: Jolly Match 3 - Puzzle Game By Jollyco LLC
      Bundle ID: com.jollyco.jollybattlematch3
      App Store Link: https://apps.apple.com/us/app/jolly-match-3-puzzle-game/id1554274735?uo=4


      🤩 Hack Features

      - Auto Win

      - Coins

      - Stars

      - Lives

      - Booster
      • 1 reply
    • Jolly Match 3 - Puzzle Game v1.0.1884 [ +5 Jailed ] Auto Win
      Modded/Hacked App: Jolly Match 3 - Puzzle Game By Jollyco LLC
      Bundle ID: com.jollyco.jollybattlematch3
      App Store Link: https://apps.apple.com/us/app/jolly-match-3-puzzle-game/id1554274735?uo=4


      🤩 Hack Features

      - Auto Win

      - Coins

      - Stars

      - Lives

      - Booster
      • 1 reply
    • Cannon Heroes X v1.2.19 [+3 Jailed Cheats]
      Modded/Hacked App: Cannon Heroes X By Zego Global Pte Ltd
      Bundle ID: com.ig.cannon.heroes
      App Store Link: https://apps.apple.com/us/app/cannon-heroes-x/id6744356657?uo=4



      🤩 Hack Features

      - Free IAP
      - Never Die
      - Debug Menu (Enable once then restart game. Enable again you'll see debug menu)
        • Winner
        • Like
      • 1 reply
    • Cannon Heroes X v1.2.19 [+3 Cheats]
      Modded/Hacked App: Cannon Heroes X By Zego Global Pte Ltd
      Bundle ID: com.ig.cannon.heroes
      App Store Link: https://apps.apple.com/us/app/cannon-heroes-x/id6744356657?uo=4



      🤩 Hack Features

      - Free IAP
      - Never Die
      - Debug Menu (Enable once then restart game. Enable again you'll see debug menu)
       
        • Winner
        • Like
      • 1 reply
    • Archero Cheats v6.14.0 +5 [ God Mode & More ]
      Modded/Hacked App: Archero by HABBY PTE. LTD.
      Bundle ID: com.habby.archero
      iTunes Store Link: https://apps.apple.com/us/app/archero/id1453651052?uo=4&at=1010lce4



      Hack Features:
      - Multiply Defense to
      - Multiply Damage to
      - God Mode
      - OHK (Must use with God Mode)
      - Freeze Enemies

      NOTE: If you want to use god mode and ohk turn off multiply damage and defense first. I added multiply damage and defense there to avoid ban


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/100710-archero-v210-enemies-dont-attack-x30-attack/


      Hack Download Link: https://iosgods.com/topic/96783-arm64-archero-cheats-v220-5/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 15,861 replies
    • Galaxy Defense: Fortress TD v0.9.2 [+2 Cheats]
      Modded/Hacked App: Galaxy Defense: Fortress TD By CYBERJOY LIMITED
      Bundle ID: com.cyberjoy.galaxydefense
      App Store Link: https://apps.apple.com/us/app/galaxy-defense-fortress-td/id6740189002?uo=4



      🤩 Hack Features

      - One Hit Kill
      - Activate SVIP
       
        • Agree
        • Thanks
        • Winner
        • Like
      • 29 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