Jump to content

1 post in this topic

Recommended Posts

Posted

I am beginner and I am trying to hack the game Pocket Mortys, the game is like pokemon where IVs are randomly generated from 1-16. I want to hack this part of the game but I haven't been successful. I've loaded up the game into IDA and found the code for the function that generates these IV's, here it is

MortyData$$GenerateIVs                  ; CODE XREF: MortyData$$.ctor:loc_2690A8↑p
il2cpp:000000000026A9C4                                         ; DATA XREF: __data:000000000317E3B8↓o
il2cpp:000000000026A9C4
il2cpp:000000000026A9C4 var_20          = -0x20
il2cpp:000000000026A9C4 var_10          = -0x10
il2cpp:000000000026A9C4 var_s0          =  0
il2cpp:000000000026A9C4
il2cpp:000000000026A9C4                 STP             X22, X21, [SP,#-0x10+var_20]!
il2cpp:000000000026A9C8                 STP             X20, X19, [SP,#0x20+var_10]
il2cpp:000000000026A9CC                 STP             X29, X30, [SP,#0x20+var_s0]
il2cpp:000000000026A9D0                 ADD             X29, SP, #0x20
il2cpp:000000000026A9D4                 MOV             X20, X2
il2cpp:000000000026A9D8                 MOV             X21, X1
il2cpp:000000000026A9DC                 MOV             X19, X0
il2cpp:000000000026A9E0                 ADRP            X22, #byte_3357212@PAGE
il2cpp:000000000026A9E4                 LDRB            W8, [X22,#byte_3357212@PAGEOFF]
il2cpp:000000000026A9E8                 TBNZ            W8, #0, loc_26AA00
il2cpp:000000000026A9EC                 ADRL            X0, StringLiteral_7959 ; MortyDefault
il2cpp:000000000026A9F4                 BL              sub_25F7DF4
il2cpp:000000000026A9F8                 MOV             W8, #1
il2cpp:000000000026A9FC                 STRB            W8, [X22,#byte_3357212@PAGEOFF]
il2cpp:000000000026AA00
il2cpp:000000000026AA00 loc_26AA00                              ; CODE XREF: MortyData$$GenerateIVs+24↑j
il2cpp:000000000026AA00                 LDR             X0, [X19,#0x10]
il2cpp:000000000026AA04                 CBZ             X0, loc_26AAA8
il2cpp:000000000026AA08                 ADRL            X8, StringLiteral_7959 ; MortyDefault
il2cpp:000000000026AA10                 LDR             X1, [X8] ; MortyDefault
il2cpp:000000000026AA14                 MOV             X2, #0
il2cpp:000000000026AA18                 BL              System.String$$Equals_17774564
il2cpp:000000000026AA1C                 CBZ             W0, loc_26AA2C
il2cpp:000000000026AA20                 STP             W20, W20, [X19,#0x54]
il2cpp:000000000026AA24                 MOV             X8, X20
il2cpp:000000000026AA28                 B               loc_26AA90
il2cpp:000000000026AA2C ; ---------------------------------------------------------------------------
il2cpp:000000000026AA2C
il2cpp:000000000026AA2C loc_26AA2C                              ; CODE XREF: MortyData$$GenerateIVs+58↑j
il2cpp:000000000026AA2C                 ADD             W20, W20, #1
il2cpp:000000000026AA30                 MOV             X0, X21
il2cpp:000000000026AA34                 MOV             X1, X20
il2cpp:000000000026AA38                 MOV             X2, #0
il2cpp:000000000026AA3C                 BL              UnityEngine.Random$$Range_16731460
il2cpp:000000000026AA40                 STR             W0, [X19,#0x54]
il2cpp:000000000026AA44                 MOV             X0, X21
il2cpp:000000000026AA48                 MOV             X1, X20
il2cpp:000000000026AA4C                 MOV             X2, #0
il2cpp:000000000026AA50                 BL              UnityEngine.Random$$Range_16731460
il2cpp:000000000026AA54                 STR             W0, [X19,#0x58]
il2cpp:000000000026AA58                 MOV             X0, X21
il2cpp:000000000026AA5C                 MOV             X1, X20
il2cpp:000000000026AA60                 MOV             X2, #0
il2cpp:000000000026AA64                 BL              UnityEngine.Random$$Range_16731460
il2cpp:000000000026AA68                 MOV             X20, X0
il2cpp:000000000026AA6C                 LDP             W8, W9, [X19,#0x54]
il2cpp:000000000026AA70                 ADD             W8, W8, W0
il2cpp:000000000026AA74                 ADD             W8, W8, W9
il2cpp:000000000026AA78                 MOV             W9, #0x55555556
il2cpp:000000000026AA80                 SMULL           X8, W8, W9
il2cpp:000000000026AA84                 LSR             X9, X8, #0x3F ; '?'
il2cpp:000000000026AA88                 LSR             X8, X8, #0x20 ; ' '
il2cpp:000000000026AA8C                 ADD             W8, W8, W9
il2cpp:000000000026AA90
il2cpp:000000000026AA90 loc_26AA90                              ; CODE XREF: MortyData$$GenerateIVs+64↑j
il2cpp:000000000026AA90                 STR             W20, [X19,#0x5C]
il2cpp:000000000026AA94                 STR             W8, [X19,#0x50]
il2cpp:000000000026AA98                 LDP             X29, X30, [SP,#0x20+var_s0]
il2cpp:000000000026AA9C                 LDP             X20, X19, [SP,#0x20+var_10]
il2cpp:000000000026AAA0                 LDP             X22, X21, [SP+0x20+var_20],#0x30
il2cpp:000000000026AAA4                 RET
il2cpp:000000000026AAA8 ; ---------------------------------------------------------------------------
il2cpp:000000000026AAA8
il2cpp:000000000026AAA8 loc_26AAA8                              ; CODE XREF: MortyData$$GenerateIVs+40↑j
il2cpp:000000000026AAA8                 BL              sub_25F7F08
il2cpp:000000000026AAA8 ; End of function MortyData$$GenerateIVs

I have tried the following: Changing the first two BL UnityEngine.Random$$Range_16731460 functions to MOV W0, #16 and the third one to MOV X0, #16. I have done this using IGG's LIve Offset Patcher, and replacing the binary file with the modified one, in both occasions my game instantly crashes or after I turn the patches on in IGG.

After that didn't work I went to code for the function UnityEngine.Random$$Range_16731460, here it is

il2cpp:0000000000FF4D44 UnityEngine.Random$$Range_16731460      ; CODE XREF: AssetBundleDefs$$AppendPathWithAntiCache+50↑p
il2cpp:0000000000FF4D44                                         ; AudioController$$PlayRndSFX+EC↑p ...
il2cpp:0000000000FF4D44
il2cpp:0000000000FF4D44 var_20          = -0x20
il2cpp:0000000000FF4D44 var_10          = -0x10
il2cpp:0000000000FF4D44 var_s0          =  0
il2cpp:0000000000FF4D44
il2cpp:0000000000FF4D44                 STP             X22, X21, [SP,#-0x10+var_20]!
il2cpp:0000000000FF4D48                 STP             X20, X19, [SP,#0x20+var_10]
il2cpp:0000000000FF4D4C                 STP             X29, X30, [SP,#0x20+var_s0]
il2cpp:0000000000FF4D50                 ADD             X29, SP, #0x20
il2cpp:0000000000FF4D54                 MOV             X19, X1
il2cpp:0000000000FF4D58                 MOV             X20, X0
il2cpp:0000000000FF4D5C                 ADRP            X21, #qword_335E128@PAGE
il2cpp:0000000000FF4D60                 LDR             X2, [X21,#qword_335E128@PAGEOFF]
il2cpp:0000000000FF4D64                 CBNZ            X2, loc_FF4D7C
il2cpp:0000000000FF4D68                 ADRL            X0, aUnityengineRan_0 ; "UnityEngine.Random::RandomRangeInt(Syst"...
il2cpp:0000000000FF4D70                 BL              sub_25F7DAC
il2cpp:0000000000FF4D74                 MOV             X2, X0
il2cpp:0000000000FF4D78                 STR             X0, [X21,#qword_335E128@PAGEOFF]
il2cpp:0000000000FF4D7C
il2cpp:0000000000FF4D7C loc_FF4D7C                              ; CODE XREF: UnityEngine.Random$$Range_16731460+20↑j
il2cpp:0000000000FF4D7C                 MOV             X0, X20
il2cpp:0000000000FF4D80                 MOV             X1, X19
il2cpp:0000000000FF4D84                 LDP             X29, X30, [SP,#0x20+var_s0]
il2cpp:0000000000FF4D88                 LDP             X20, X19, [SP,#0x20+var_10]
il2cpp:0000000000FF4D8C                 LDP             X22, X21, [SP+0x20+var_20],#0x30
il2cpp:0000000000FF4D90                 BR              X2
il2cpp:0000000000FF4D90 ; End of function UnityEngine.Random$$Range_16731460

I really don't know what I can do to this function help me but here it is in case anyone has an idea. If anyone can help or if i'm doing something wrong please let me know!

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

    • Monster Legends: Collect all Cheats v18.1.2 +8
      Modded/Hacked App: Monster Legends: Merge RPG By Socialpoint
      Bundle ID: es.socialpoint.MonsterCity
      iTunes Store Link: https://apps.apple.com/us/app/monster-legends-merge-rpg/id653508448?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🤩 Hack Features

      - 1 Hit Kill
      - Skip Enemy Turn
      - Multiply Attack
      - Multiply Defense
      - Insane Score (Always 3 Stars)
      - No Skill Cost
      - Auto Win
      - Auto Play Battle Enabled for All Maps


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/140543-monster-legends-collect-all-v1778-5-cheats-for-jailed-idevices/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/176914-monster-legends-collect-all-cheats-v1779-8/
      • 352 replies
    • Eatventure v1.43.0 Jailed Cheats +2
      Modded/Hacked App: Eatventure By Lessmore UG haftungsbeschraenkt
      Bundle ID: com.hwqgrhhjfd.idlefastfood
      iTunes Store Link: https://apps.apple.com/us/app/eatventure/id1600871388?uo=4


      Hack Features:
      - Freeze Currencies
      - Free iAP (Turn on inside iOSGods Mod Menu first)


      Jailbreak required hack(s): https://iosgods.com/topic/168170-eatventure-cheats-all-versions-1/


      iOS Hack Download IPA Link: https://iosgods.com/topic/168169-eatventure-v110-jailed-cheats-2/
      • 356 replies
    • Battle Legion - Mass Battler Cheats v4.4.2 +4
      Modded/Hacked App: Battle Legion - Mass Battler By GODSPEED GAMING SOLUTIONS PRIVATE LIMITED
      Bundle ID: com.traplight.battleslides
      iTunes Store Link: https://apps.apple.com/us/app/battle-legion-mass-battler/id1435133042?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

      - Multiply Attack
      - Multiply Defense
      - Instant Win
      - Enemies Don't Move
      - Enemies Don't Attack

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/129669-battle-legion-mass-battler-cheats-v424-4/
      • 580 replies
    • Jetpack Joyride Cheats v1.100.2 +8
      Modded/Hacked App: Jetpack Joyride By Halfbrick
      Bundle ID: com.halfbrick.jetpack
      iTunes Store Link: https://apps.apple.com/us/app/jetpack-joyride/id457446957?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

      - Infinite Coins
      - High Score
      - God Mode
      - Free Shopping
      - Coin Magnet Enabled
      - Increased Magnet Range
      - All Items Owned
      - All Gadgets Unlocked

       

      Non-Jailbroken Hack: https://iosgods.com/topic/119791-jetpack-joyride-v1971-jailed-cheats-8/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/119788-jetpack-joyride-cheats-v1972-8/
      • 505 replies
    • My Talking Tom Friends Cheats v25.3 +2
      Modded/Hacked App: My Talking Tom Friends By Outfit7 Limited
      Bundle ID: com.outfit7.mytalkingtomfriends
      iTunes Store Link: https://apps.apple.com/us/app/my-talking-tom-friends/id1473424857?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

      - Infinite Coins
      - No Ads

      Non-Jailbroken Hack: https://iosgods.com/topic/128377-my-talking-tom-friends-v392-jailed-cheats-2/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/128376-my-talking-tom-friends-cheats-v2510-2/
      • 154 replies
    • BitLife - Life Simulator Cheats v3.19.9 +2
      Modded/Hacked App: BitLife - Life Simulator by Candywriter, LLC
      Bundle ID: com.wtfapps.apollo16
      iTunes Store Link: https://apps.apple.com/us/app/bitlife-life-simulator/id1374403536?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - Free Bitizen Purchase (Press Cancle) - Work for All Versions


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/84167-arm64-bitlife-life-simulator-v1412-jailed-cheats-2/


      Hack Download Link: https://iosgods.com/topic/84223-arm64-bitlife-life-simulator-cheats-all-versions-2/
      • 3,684 replies
    • [ Chiikawa Pocket JP ] ちいかわぽけっと v1.4.0 Jailed Cheats +3
      Modded/Hacked App: ちいかわぽけっと By Applibot Inc.
      Bundle ID: jp.co.applibot.chiikawapocket
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%81%A1%E3%81%84%E3%81%8B%E3%82%8F%E3%81%BD%E3%81%91%E3%81%A3%E3%81%A8/id6596745408?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

      - God Mode
      - Multiply Attack
      - Custom Speed (Customize before Login or Clear stage to get apply)

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/194281-chiikawa-pocket-jp-%E3%81%A1%E3%81%84%E3%81%8B%E3%82%8F%E3%81%BD%E3%81%91%E3%81%A3%E3%81%A8-v1111-jailed-cheats-3/
      • 28 replies
    • Chiikawa Pocket Cheats v1.4.0 +3
      Modded/Hacked App: Chiikawa Pocket By Applibot Inc.
      Bundle ID: jp.co.applibot.chiikawapocketgl
      iTunes Store Link: https://apps.apple.com/us/app/chiikawa-pocket/id6740838442?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
      - Multiply Attack

       

      Non-Jailbroken Hack: https://iosgods.com/topic/193718-chiikawa-pocket-v111-jailed-cheats-2/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/193717-chiikawa-pocket-cheats-v111-2/
      • 50 replies
    • Township: Farm & City Building v29.1.0 Jailed Cheats +2
      Modded/Hacked App: Township by PLR Worldwide Sales Limited
      Bundle ID: com.playrix.township-ios
      iTunes Store Link: https://apps.apple.com/us/app/township/id638689075?uo=4&at=1010lce4


      Hack Features:
      - Freeze Currencies

      EDIT: Please be aware that this maybe cause your account banned, please use with caution and don’t abuse


      iOS Hack Download Link: https://iosgods.com/topic/116584-arm64-township-farm-city-building-v852-jailed-cheats-2/
      • 1,719 replies
    • Last Day On Earth: Survival v1.38.2 +36 FREE Hacks
      Modded/Hacked App: Last Day on Earth: Survival By Andrey Pryakhin
      Bundle ID: zombie.survival.craft.z
      iTunes Link: https://itunes.apple.com/us/app/last-day-on-earth-survival/id1241932094

      Hack Features:
      - Coins Hack - Spend/Buy something that costs Coins to increase Coins!
      - Durability Hack - Weapons, Clothes, Boots, etc. Will not break. You can always keep using them.
      - Crafting Hack - Able to craft stuff without required items!
      - Skill Points Hack - Skill Points won't decrease, reset to increase.
      - Duplicate Items Hack - Split Items to duplicate them! Now it will duplicate by 20!
      - Loot box hack - Open 1 lootbox for 1000! - x64 only
      - Items increase when Taking from Inbox. You will never run out of Items in your inbox! - x64 only
      - Minigun Doesn't Overheat - x64 only
      - Unlimited Energy. Energy Increases instead of subtracting! - x64 only
      - Bow One Hit Kill - x64 only
      - Anti-Ban

      During the month of December, we have decided to make the ViP hack for free for all users! :) Extra features include:
      • 30,148 replies
    • Spin Go - Lucky Hero Cheats v1.18 +5
      Modded/Hacked App: Spin Go - Lucky Hero By Gemini Network
      Bundle ID: spin.hero.battle.master
      App Store Link: https://apps.apple.com/us/app/spin-go-lucky-hero/id6740072501?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
      - Multiply Attack
      - Freeze Currencies
      - Enable Debug Menu
      - Free Battle Pass Purchase (Click on Buy and done)

       

      Non-Jailbroken Hack: https://iosgods.com/topic/198306-spin-go-lucky-hero-v118-jailed-cheats-5/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/198304-spin-go-lucky-hero-cheats-v118-5/
      • 1 reply
    • Dead Zombie: Idle Strategy RPG v1.73 [+3 Jailed Cheats]
      Modded/Hacked App: Dead Zombie: Idle Strategy RPG By Bliss Games SL
      Bundle ID: com.BlissGames.Juego95
      App Store Link: https://apps.apple.com/us/app/dead-zombie-idle-strategy-rpg/id6475586273?uo=4

       

      🤩 Hack Features

      - Never Die
      - Always Can Upgrade
      - Always Can Purchase
      • 1 reply
×
  • 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