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

    • Subway Surfers v3.45.0 +22 Jailed Cheats [ Currencies + More ]
      Modded/Hacked App: Subway Surfers By Sybo Games ApS
      Bundle ID: com.kiloo.subwaysurfers
      iTunes Store Link: https://apps.apple.com/us/app/subway-surfers/id512939461?uo=4


      Hack Features:
      - Unlimited Currencies
      - Freeze Currencies
      - Free In-App Purchases
      - All Characters Unlocked
      - All Boards Unlocked
      - God Mode
      - No Stumble
      - Score Multiplier
      - Speed Multiplier
      - Gravity Multiplier
      - Jump Height Multiplier
      - Air Jump Height Multiplier
      - Unlimited Jumps
      - Unlimited Powers
      - Instant Lane Change
      - Freeze Trains
      - No Clip
      - Disable All Pickup
      - No Revive Cost
      - Unlimited Jetpack Time
      - Camera Stops
      - Camera Follows


      Jailbreak required hack(s): [Mod Menu Hack] Subway Surfers v3.40.0 +20 Cheats [ Currencies + More ] - ViP 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 35 replies
    • Subway Surfers v3.45.0 +22 Cheats [ Currencies + More ]
      Modded/Hacked App: Subway Surfers By Sybo Games ApS
      Bundle ID: com.kiloo.subwaysurfers
      iTunes Store Link: https://apps.apple.com/us/app/subway-surfers/id512939461?uo=4


      Hack Features:
      - Unlimited Currencies
      - Freeze Currencies
      - Free In-App Purchases
      - All Characters Unlocked
      - All Boards Unlocked
      - God Mode
      - No Stumble
      - Score Multiplier
      - Speed Multiplier
      - Gravity Multiplier
      - Jump Height Multiplier
      - Air Jump Height Multiplier
      - Unlimited Jumps
      - Unlimited Powers
      - Instant Lane Change
      - Freeze Trains
      - No Clip
      - Disable All Pickup
      - No Revive Cost
      - Unlimited Jetpack Time
      - Camera Stops
      - Camera Follows


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Subway Surfers v3.40.0 +20 Jailed Cheats [ Currencies + More ] - ViP Non-Jailbroken Hacks & 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 40 replies
    • Mob Control v2.86.0 +7 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Mob Control By Voodoo
      Bundle ID: com.vincentb.MobControl
      iTunes Store Link: https://apps.apple.com/us/app/mob-control/id1562817072?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Skip'Its -> Earn or spend some.
      - Unlimited Stars -> Earn some.
      - Unlimited Bricks
      - Unlimited Earnt Bricks
      - Unlimited Cards -> Will increase instead of decrease.
      - No Card Requirement


      Jailbreak required hack(s): [Mod Menu Hack] Mob Control v2.78.0 +7 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 194 replies
    • Mob Control v2.86.0 +7 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Mob Control By Voodoo
      Bundle ID: com.vincentb.MobControl
      iTunes Store Link: https://apps.apple.com/us/app/mob-control/id1562817072?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Skip'Its -> Earn or spend some.
      - Unlimited Stars -> Earn some.
      - Unlimited Bricks
      - Unlimited Earnt Bricks
      - Unlimited Cards -> Will increase instead of decrease.
      - No Card Requirement


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Mob Control v2.78.0 +7 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 99 replies
    • Three Kingdoms All-Star : Idle v1.3 +1 Jailed Cheat [ No Skill Cooldown ]
      Modded/Hacked App: Three Kingdoms All-Star : Idle By Highbrow
      Bundle ID: com.highbrow.games.tki
      iTunes Store Link: https://apps.apple.com/us/app/three-kingdoms-all-star-idle/id6737404289?uo=4

       


      🤩 Hack Features

      - No Skill Cooldown
        • Thanks
      • 8 replies
    • Three Kingdoms All-Star : Idle v1.3 +1 Cheat [ No Skill Cooldown ]
      Modded/Hacked App: Three Kingdoms All-Star : Idle By Highbrow
      Bundle ID: com.highbrow.games.tki
      iTunes Store Link: https://apps.apple.com/us/app/three-kingdoms-all-star-idle/id6737404289?uo=4

       


      🤩 Hack Features

      - No Skill Cooldown
        • Thanks
        • Winner
      • 13 replies
    • Five Hearts Under One Roof v1.0.5 +3 Jailed Cheats [ All Chapters Unlocked ]
      Modded/Hacked App: Five Hearts Under One Roof By Storytaco.inc
      Bundle ID: com.storytaco.pc01mclient
      iTunes Store Link: https://apps.apple.com/us/app/five-hearts-under-one-roof/id6742767401?uo=4

       


      🤩 Hack Features

      - Unlimited Love Letters & All Scenes Unlocked
      - All Chapters Unlocked
      - All Ranking Characters Unlocked
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 21 replies
    • Five Hearts Under One Roof v1.0.5 +3 Cheats [ All Chapters Unlocked ]
      Modded/Hacked App: Five Hearts Under One Roof By Storytaco.inc
      Bundle ID: com.storytaco.pc01mclient
      iTunes Store Link: https://apps.apple.com/us/app/five-hearts-under-one-roof/id6742767401?uo=4

       


      🤩 Hack Features

      - Unlimited Love Letters & All Scenes Unlocked
      - All Chapters Unlocked
      - All Ranking Characters Unlocked
        • Informative
        • Thanks
        • Like
      • 8 replies
    • Grimguard Tactics: Fantasy RPG v1.10.4 +3 Jailed Cheats [ Auto Win ]
      Modded/Hacked App: Grimguard Tactics: Fantasy RPG By Outerdawn Limited
      Bundle ID: com.outerdawn.grimguard
      iTunes Store Link: https://apps.apple.com/us/app/grimguard-tactics-fantasy-rpg/id1496893856?uo=4


      Hack Features:
      - Auto Win
      - Unlimited Daily Rewards
      - No Stamina Cost


      Jailbreak required hack(s): [Mod Menu Hack] Grimguard Tactics: Fantasy RPG v1.1.10 +3 Cheats [ Auto Win ] - ViP 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/
        • Agree
        • Like
      • 107 replies
    • Grimguard Tactics: Fantasy RPG v1.10.4 +3 Cheats [ Auto Win ]
      Modded/Hacked App: Grimguard Tactics: Fantasy RPG By Outerdawn Limited
      Bundle ID: com.outerdawn.grimguard
      iTunes Store Link: https://apps.apple.com/us/app/grimguard-tactics-fantasy-rpg/id1496893856?uo=4


      Hack Features:
      - Auto Win
      - Unlimited Daily Rewards
      - No Stamina Cost


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Grimguard Tactics: Fantasy RPG v1.1.10 +3 Jailed Cheats [ Auto Win ] - ViP Non-Jailbroken Hacks & 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/
        • Agree
        • Thanks
        • Winner
        • Like
      • 85 replies
    • Frozen War v1.9.7 +1 Jailed Cheat [ Damage ]
      Modded/Hacked App: Frozen War By IGG SINGAPORE PTE. LTD.
      Bundle ID: com.igg.ios.frozenwar
      iTunes Store Link: https://apps.apple.com/us/app/frozen-war/id6738370929?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
        • Thanks
        • Winner
        • Like
      • 12 replies
    • Frozen War v1.9.7 +1 Cheat [ Damage ]
      Modded/Hacked App: Frozen War By IGG SINGAPORE PTE. LTD.
      Bundle ID: com.igg.ios.frozenwar
      iTunes Store Link: https://apps.apple.com/us/app/frozen-war/id6738370929?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
        • Agree
        • Winner
        • Like
      • 30 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