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

    • Mob Control v2.87.2 +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/
      • 199 replies
    • Mob Control v2.87.2 +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/
        • Like
      • 105 replies
    • Erythros Lite v24.02.25 +8 Jailed Cheats [ Unlimited Everything ]
      Modded/Hacked App: Erythros Lite By VLADYSLAV PAVLIV
      Bundle ID: com.keyneed.erythroslite
      App Store Link: https://apps.apple.com/us/app/erythros-lite/id6740181005?uo=4

       
       

      🤩 Hack Features

      - Unlimited Health
      - Unlimited Stamina
      - Unlimited Food
      - Unlimited Water
      - Unlimited Sickness
      - Unlimited Experience
      -- Premium Enabled
      -- Anti Ban [ Untested ]
      • 0 replies
    • Erythros Lite v24.02.25 +8 Cheats [ Unlimited Everything ]
      Modded/Hacked App: Erythros Lite By VLADYSLAV PAVLIV
      Bundle ID: com.keyneed.erythroslite
      App Store Link: https://apps.apple.com/us/app/erythros-lite/id6740181005?uo=4

       


      🤩 Hack Features

      - Unlimited Health
      - Unlimited Stamina
      - Unlimited Food
      - Unlimited Water
      - Unlimited Sickness
      - Unlimited Experience
      -- Premium Enabled
      -- Anti Ban [ Untested ]
      • 0 replies
    • Vampire Survivors v1.13.109 +4 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Vampire Survivors By Poncle
      Bundle ID: com.poncle.VampireSurvivors
      iTunes Store Link: https://apps.apple.com/us/app/vampire-survivors/id6444525702
       

      Hack Features:
      - Damage Multiplier
      - Defence Multiplier
      - Unlimited Coins -> Spend some.
      - All Weapons Unlocked -> Head over to Options and toggle the Sounds button.


      Jailbreak required hack(s): [Mod Menu Hack] Vampire Survivors v1.6.104 +5 Cheats [ Damage & Defence ] - 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/
      • 115 replies
    • Vampire Survivors v1.13.109 +4 Cheats [ Damage & Defence ]
      Modded/Hacked App: Vampire Survivors By Poncle
      Bundle ID: com.poncle.VampireSurvivors
      iTunes Store Link: https://apps.apple.com/us/app/vampire-survivors/id6444525702
       

      Hack Features:
      - Damage Multiplier
      - Defence Multiplier
      - Unlimited Coins -> Spend some.
      - All Weapons Unlocked -> Head over to Options and toggle the Sounds button.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Vampire Survivors v1.6.104 +3 Jailed Cheats [ God Mode ] - 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/
      • 110 replies
    • Love Sparks: Make Me Blush v2.44.0 +2++ Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Love Sparks: Make Me Blush By SVEG MASHA, OOO
      Bundle ID: com.swagmasha.lovespark
      iTunes Store Link: https://apps.apple.com/us/app/love-sparks-make-me-blush/id1580105392?uo=4
       

      Hack Features:
      - Unlimited Gems -> Earn some.
      - VIP Enabled


      Jailbreak required hack(s): [Mod Menu Hack] Love Sparks: My Secret Fantasy v2.17.0 +2 Cheats [ Unlimited Gems ] - 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/
      • 887 replies
    • Love Sparks: Make Me Blush v2.44.0 +2++ Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Love Sparks: Make Me Blush By SVEG MASHA, OOO
      Bundle ID: com.swagmasha.lovespark
      iTunes Store Link: https://apps.apple.com/us/app/love-sparks-make-me-blush/id1580105392?uo=4
       

      Hack Features:
      - Unlimited Gems -> Earn some.
      - VIP Enabled


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Love Sparks: My Secret Fantasy v2.17.0 +3 Jailed Cheats [ Unlimited Gems ] - 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/
      • 388 replies
    • Whispers - Interactive Stories v2.2.9 +2 Jailed Cheats [ Free Choices ]
      Modded/Hacked App: Whispers: Interactive Stories By GAMEHAUS LIMITED
      Bundle ID: com.twincat.stories
      iTunes Store Link: https://apps.apple.com/us/app/whispers-interactive-stories/id1546336250
       

      Hack Features:
      - All Chapters Unlocked
      - Free Premium Choices


      Jailbreak required hack(s): [Mod Menu Hack] Whispers: Interactive Stories v1.4.9 +2 Cheats [ Free Choices ] - 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/
      • 277 replies
    • Whispers - Interactive Stories v2.2.9 +2 Cheats [ Free Choices ]
      Modded/Hacked App: Whispers: Interactive Stories By GAMEHAUS LIMITED
      Bundle ID: com.twincat.stories
      iTunes Store Link: https://apps.apple.com/us/app/whispers-interactive-stories/id1546336250
       

      Hack Features:
      - All Chapters Unlocked
      - Free Premium Choices


      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/
      • 172 replies
    • MeChat - Interactive Stories v4.33.1 +2 Jailed Cheats [ Unlimited Gems ]
      Modded/Hacked App: MeChat - Interactive Stories By IMPONILOX LIMITED
      Bundle ID: world.playme.mechat
      App Store Link: https://apps.apple.com/us/app/mechat-interactive-stories/id1536157979?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

      - Unlimited Gems -> Will increase instead of decrease.

      VIP
      - Unlimited Gems -> Earn some then disable this feature. DO NOT SPEND ANY GEMS WHILST THIS FEATURE IS ENABLED!
      • 767 replies
    • MeChat - Interactive Stories v4.33.1 +2 Cheats [ Unlimited Gems ]
      Modded/Hacked App: MeChat - Interactive Stories By IMPONILOX LIMITED
      Bundle ID: world.playme.mechat
      App Store Link: https://apps.apple.com/us/app/mechat-interactive-stories/id1536157979?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

      - Unlimited Gems -> Will increase instead of decrease.

      VIP
      - Unlimited Gems -> Earn some then disable this feature. DO NOT SPEND ANY GEMS WHILST THIS FEATURE IS ENABLED!
      • 307 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