Jump to content

Modding basic Unity android games with Net Reflector (easier to understand)


56 posts in this topic

Recommended Posts

Updated (edited)

vT5xChP.jpg

 

I thought I'd share some insight to all those people who want to become cool hackers like us, and I thought hey, why not?

So, without further delay, here it is.

 

Downloads:

Hidden Content

React or reply to this topic to see the hidden content & download link. 👀

 

Anyway, now that all of that downloading is over, lets begin by setting up all of our programs, shall we?

 

Setting Up .Net Reflector:

Download the exe file I have provided you with.

Navigate to the exe and open the .Net Reflector setup

It should ask you a bunch of questions, answer them as you see fit

Then once it is done, it should put an icon on your desktop named Net Reflector (if you checked the put shortcut on desktop box)

Cool, now .Net Reflector is set up!

 

Setting Up Reflexil:

First, click the View tab and click Add Ins. Then navigate to where your Reflexil DLL is and click it.

 

Setting Up Advanced Apktool:

This part is really simple, just download and unzip it with Winrar and you're done

 

Now let's get on with the real tutorial

 

Step 1: Download the apk you want to mod. For this tutorial, I will be using Hungry Shark Evolution, and today we will be modding Coins and Gems. (Please note in order to mod an apk using Reflector, it must have an assets, bin, data, and managed folders, along with assembly-csharp.dll. If it doesn't have this, you can't mod it with Reflector.

 

Step 2: Open the apk with Winrar (do not extract it, just open it), and find the assets folder, then the bin folder, then the data folder, then the managed, and then drag the assembly-csharp.dll file out of the apk onto your desktop.

 

Step 3: Drag the dll file to .Net Reflector and it will open it up. Next, Navigate up to tools, click Reflexil 1.9, and then Navigate up to tools again and click Search.

Then on the top right of your screen, there is three buttons parallel with the search bar, click the second one so it looks like this.

Pic3.png

 

Step 4: Great! Now that Reflector is COMPLETELY set up, Navigate to the left of your screen, find Assembly-Csharp.DLL (0.0.0.0), and click the +, then where is says Assembly-Csharp.dll below that, click the plus. Good, now in the search box, (not the one above all the +'s, the search box you opened via Tools) type get_currency and wait for it to load. Now scroll down the list until you see the one with the Member being SharkStats. When you find that one, double click it, and then click get_currency().

 

Step 5: Now you see a bunch of stuff you probably don't understand that probably look something like this: (doesn't have to be identical)

Pic4.png

 

That's good, you are supposed to see that. If you don't see that, redo step 4.

Anyway, delete everything in that box except for the ret row (do this by right clicking and clicking Delete) (if you accidentally delete ret, exit .Net Reflector and redo Steps 3 and 4)

Cool, now right click the box, and click create new. Your OpCode will be ldc.i4 (that is an L not an I), your Operand Type will be Int32 (in this case it will be, if in the left hand section, it says Single next to the function, your Operand Type will be single, and your OpCode will be ldc.r4). And finally your Operand will be something like 999999 or 737244 or a number that you want to use. (This will be the amount of Coins and Gems you have).

Once done, click Append. Then, move the ldc.i4 function above the ret function by dragging the 5 above the 0.

 

Step 6: Now we will work on Premium Currency (Gems). Scroll down the list on the left hand side that contains all the functions. (Make sure to stay under Shark Stats). You will find PremiumCurrency. Double click it, and one of the functions should be get_PremiumCurrency(). Double click that and follow step 5 again. It is the same exact process.

 

Step 7: Once you are done modding both Currency and Premium Currency (Coins and Gems), collapse currency and Premium Currency by hitting the - next to both of them on the left hand side, then collapse SharkStats by clicking the - next to SharkStats on the left hand side, then collapse the - by clicking the - next to the - on the left hand side, and finally collapse Assembly-Csharp.dll by clicking the - next to it. (Make sure the one with the book looking icon is still showing). Next, right click assembly-csharp.dll (not the one that has (0.0.0.0) next to it), hover over Reflexil 1.9, and click save as. You should still have that Assembly-csharp file on your desktop. Delete the .Patched next to the file name your are saving, and save it. It will ask to overwrite, click yes. Be sure to read !y note before closing .Net Reflector! If you read my note 1 and it doesnt apply to you, you can now close .Net Reflector

 

Step 8: Now reopen the apk, and simply move the Assembly-Csharp.dll to assets/bin/data/managed again and then exit Winrar and delete assembly-csharp from your desktop. Now open Advanced Apktool, move the apk to the 4- Done folder and then open Advanced Apktool. Type 4, then enter, find the apk you want, type that number and enter, and then press y and enter. Wait for it to sign (it will say it is done signing).

 

Awesome! Your mod is now ready to play! Just make sure you have the obb, and install your apk! Boom, unlimited Coins and Gems!

 

Note 1: If you receive an error saying something about "failed to resolve assembly "PlayMaker, Version 1.6" or something like that, that is perfectly normal. Do NOT close .Net Reflector yet though! Simply open the apk again via Winrar, and copy the REST of the dlls to your desktop (don't recopy assembly-csharp again). Now try resaving again and it should work. After saving, just delete the REST of the dlls (do NOT delete assembly-csharp from your desktop) and then exit the program. (Make sure you resaved the file after moving the other dlls to your desktop).

 

Note 2: If you get something saying "File is not a portable executable. DOS header does not contain 'MZ' signature." That means the dll file must be decrypted. There isn't currently a Public tutorial for decrypting a DLL, but we have one in the Android Modders section.

 

Note 3: I made this purely off memory, so some steps may not be accurate, however when I post the video, it will be accurate because I have it right in front of me.

 

Key for editing:

Int32 = ldc.i4

Int64 = ldc.i8

Single = ldc.r4

Double = ldc.r8

Basic Boolean for True (1) = ldc.i4.1

Basic Boolean for False (0) = ldc.i4.0

Updated by ._.
  • Like 60
  • Winner 5
  • Thanks 12
  • Haha 5
  • Agree 4
  • Informative 7
Posted

And no program for mac :(

Did you try ILSpy? Not sure if it's the same concept but I just looked up alternatives to Net Reflector for Mac and ILSpy showed up

Posted

The video is private, we can't see it, change it to unlisted so we can see it.

It's not my video but I added instructions on how to do it.

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

    • Red Bull Playgrounds v0.7.2 +1 Jailed Cheat [ Score Multiplier ]
      Modded/Hacked App: Red Bull Playgrounds By Red Bull Media House GmbH
      Bundle ID: com.red.bull.playgrounds
      App Store Link: https://apps.apple.com/us/app/red-bull-playgrounds/id6737554653?uo=4

       


      đŸ€©Â Hack Features

      - Score Multiplier
      • 0 replies
    • Red Bull Playgrounds v0.7.2 +1 Cheat [ Score Multiplier ]
      Modded/Hacked App: Red Bull Playgrounds By Red Bull Media House GmbH
      Bundle ID: com.red.bull.playgrounds
      App Store Link: https://apps.apple.com/us/app/red-bull-playgrounds/id6737554653?uo=4

       
       

      đŸ€©Â Hack Features

      - Score Multiplier
      • 0 replies
    • Idle Outpost: Business Game v1.21.8 +6 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Idle Outpost: Business Game By AppQuantum Publishing Ltd
      Bundle ID: com.rockbite.zombieoutpost
      App Store Link: https://apps.apple.com/us/app/idle-outpost-business-game/id6463128982?uo=4

       
       

      đŸ€©Â Hack Features

      - Freeze Coins
      - Freeze Gems
      - Cheap Upgrades

      VIP
      - 10k Gems -> Spend some.
      - Unlimited Gems -> Spend some.
      - Free Shopping -> Currencies will go negative.
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 115 replies
    • Idle Outpost: Business Game v1.21.8 +6 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Idle Outpost: Business Game By AppQuantum Publishing Ltd
      Bundle ID: com.rockbite.zombieoutpost
      App Store Link: https://apps.apple.com/us/app/idle-outpost-business-game/id6463128982?uo=4

       
       

      đŸ€©Â Hack Features

      - Freeze Coins
      - Freeze Gems
      - Cheap Upgrades

      VIP
      - 10k Gems -> Spend some.
      - Unlimited Gems -> Spend some.
      - Free Shopping -> Currencies will go negative.
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 111 replies
    • Pal Go: Tower Defense TD v0.3.80 [+7 Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      🚀 Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      đŸ€–Â Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 50 replies
    • Pal Go: Tower Defense TD v0.3.80 [+7 Jailed Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       

      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 76 replies
    • Survivor Idle Run: Z-RPG Game v1.2.1 [+4 Jailed Cheats]
      Modded/Hacked App: Survivor Idle Run: Z-RPG Game By Midnite SRL
      Bundle ID: games.midnite.sri
      App Store Link: https://apps.apple.com/us/app/survivor-idle-run-z-rpg-game/id1666329575?uo=4



      đŸ€©Â Hack Features

      - Never Die
      - Freeze Currency (Always Will Increase)
      - Activate ViP
      - No Ads
        • Winner
        • Like
      • 1 reply
    • Survivor Idle Run: Z-RPG Game v1.2.1 [+4 Cheats]
      Modded/Hacked App: Survivor Idle Run: Z-RPG Game By Midnite SRL
      Bundle ID: games.midnite.sri
      App Store Link: https://apps.apple.com/us/app/survivor-idle-run-z-rpg-game/id1666329575?uo=4



      đŸ€©Â Hack Features

      - Never Die
      - Freeze Currency (Always Will Increase)
      - Activate ViP
      - No Ads
        • Thanks
        • Winner
      • 3 replies
    • Wukong's Arsenal:Rogue RPG v1.8.3 [+3 Cheats]
      Modded/Hacked App: Wukong's Arsenal:Rogue RPG By HangZhou Mai Di Wen Network Technology Co., Ltd
      Bundle ID: com.medivhgame.wukongfIght.ios
      App Store Link: https://apps.apple.com/us/app/wukongs-arsenal-rogue-rpg/id6733239805?uo=4

       

      đŸ€©Â Hack Features

      - Never Die
      - Unlimited Currency
      - Remove Ads
        • Thanks
        • Winner
        • Like
      • 10 replies
    • Wukong's Arsenal:Rogue RPG v1.8.3 [+3 Jailed Cheats]
      Modded/Hacked App: Wukong's Arsenal:Rogue RPG By HangZhou Mai Di Wen Network Technology Co., Ltd
      Bundle ID: com.medivhgame.wukongfIght.ios
      App Store Link: https://apps.apple.com/us/app/wukongs-arsenal-rogue-rpg/id6733239805?uo=4



      đŸ€©Â Hack Features

      - Never Die
      - Unlimited Currency
      - Remove Ads
        • Like
      • 9 replies
    • Call of Antia: Match 3 RPG v4.0.21 +2 Jailed Cheats
      Modded/Hacked App: Call of Antia: Match 3 RPG By FunPlus International AG
      Bundle ID: com.funplus.coa
      App Store Link: https://apps.apple.com/us/app/call-of-antia-match-3-rpg/id1583719419?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

      - Damage Multiplier
      - Defense Multiplier

       

      âŹ‡ïžÂ iOS Hack Download IPA Link


      Hidden Content
      React or reply to this topic to see the <a href='https://iosgods.com/topic/3762-info-how-to-unlockview-the-hidden-content-on-iosgods/#findComment-78119'>hidden content & download link</a>. 👀







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 8: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - AlyssaX64

       

      đŸ“·Â Cheat Video/Screenshots

      N/A
        • Informative
        • Like
      • 16 replies
    • Call of Antia: Match 3 RPG v4.0.21 +2 Cheats
      Modded/Hacked App: Call of Antia: Match 3 RPG By FunPlus International AG
      Bundle ID: com.funplus.coa
      App Store Link: https://apps.apple.com/us/app/call-of-antia-match-3-rpg/id1583719419?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

       

      âŹ‡ïžÂ iOS Hack Download Link


      Hidden Content
      React or reply to this topic to see the <a href='https://iosgods.com/topic/3762-info-how-to-unlockview-the-hidden-content-on-iosgods/#findComment-78119'>hidden content & download link</a>. 👀







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb hack file from the link above. Use Safari, Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - AlyssaX64

       

      đŸ“·Â Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
        • Agree
        • Winner
        • Like
      • 8 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