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
  On 8/12/2016 at 8:13 PM, Amuyea said:

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
  On 8/12/2016 at 10:53 PM, mitosis said:

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

    • Match Villains v1.28.0 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Match Villains By Good Job Games Bilisim Yazilim ve Pazarlama AS
      Bundle ID: com.goodjobgames.matchvillains
      iTunes Store Link: https://apps.apple.com/us/app/match-villains/id6479752688?uo=4
       

      🚀 Hack Features

      - Coins
      - Lives
      - Moves Freeze
      - Booster


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Like
      • 13 replies
    • Match Villains v1.28.0 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Match Villains By Good Job Games Bilisim Yazilim ve Pazarlama AS
      Bundle ID: com.goodjobgames.matchvillains
      iTunes Store Link: https://apps.apple.com/us/app/match-villains/id6479752688?uo=4
       

      🚀 Hack Features

      - Coins
      - Lives
      - Moves Freeze
      - Booster


      🍏 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/
        • Like
      • 17 replies
    • Pocket Necro v1.5.2 [ +11 Cheats ] Gold Unlimited
      Modded/Hacked App: Pocket Necromancer By Sandsoft Publishing Company
      Bundle ID: com.quicksand.pocketnecromancer
      iTunes Store Link: https://apps.apple.com/us/app/pocket-necromancer/id6450004790?uo=4


      Hack Features:
      - ADS NO [ Reward Fee ]

      - Premium Active

      - Energy Cost 0

      - Energy Increaser

      - Gold Unlimited [ Win Battle ] Rewards

      - Stage Unlocked

      - Chapter Unlocked +2

      - Play Any [ Stage & Ch ]

      - Never Die

      - DMG

      - Speed Mov

      - Bullet Max [ Works With Weapon Only Just Equip ]


      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/
        • Agree
        • Haha
        • Winner
        • Like
      • 49 replies
    • Pocket Necro v1.5.2 [ +11 Jailed ] Gold Unlimited
      Modded/Hacked App: Pocket Necromancer By Sandsoft Publishing Company
      Bundle ID: com.quicksand.pocketnecromancer
      iTunes Store Link: https://apps.apple.com/us/app/pocket-necromancer/id6450004790?uo=4


      Hack Features:

      - ADS NO [ Reward Fee ]

      - Premium Active

      - Energy Cost 0

      - Energy Increaser

      - Gold Unlimited [ Win Battle ] Rewards

      - Stage Unlocked

      - Chapter Unlocked +2

      - Play Any [ Stage & Ch ]

      - Never Die

      - DMG

      - Speed Mov

      - Bullet Max [ Works With Weapon Only Just Equip ]

       
      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 54 replies
    • Turret Defense King v1.2.20 [ +9 Cheats ] Gold Max
      Modded/Hacked App: Turret Defense King By MOBIRIX
      Bundle ID: com.mobirix.tdwt
      iTunes Store Link: https://apps.apple.com/us/app/turret-defense-king/id6480586157?uo=4


      🚀 Hack Features

      - ADS NO [ Rewards Free]

      - Gold [ Revive To Get ]

      - Battle Coins [ Enemy Drop Kill ]

      - Tower Cost [ Earn Battle Coins ]

      - Enemy Max [ Only Stage Mod] Easy Win

      - Wave Max [ Only Stage Mod] Easy Win

      - Tower DMG [ Just Rebuild & Upgrade ]

      - Tower ATK Range

      - Tower Fire Rate
        • Informative
        • Agree
        • Winner
        • Like
      • 13 replies
    • Turret Defense King v1.2.20 [ +9 Jailed ] Gold Max
      Modded/Hacked App: Turret Defense King By MOBIRIX
      Bundle ID: com.mobirix.tdwt
      iTunes Store Link: https://apps.apple.com/us/app/turret-defense-king/id6480586157?uo=4


      🚀 Hack Features

      - ADS NO [ Rewards Free]

      - Gold [ Revive To Get ]

      - Battle Coins [ Enemy Drop Kill ]

      - Tower Cost [ Earn Battle Coins ]

      - Enemy Max [ Only Stage Mod] Easy Win

      - Wave Max [ Only Stage Mod] Easy Win

      - Tower DMG [ Just Rebuild & Upgrade ]

      - Tower ATK Range

      - Tower Fire Rate
        • Haha
        • Thanks
        • Winner
        • Like
      • 14 replies
    • Tower Rush - Tower Defense TD v2.0.1 [ +2 Cheats ] AI Freeze
      Modded/Hacked App: Tower Rush - Tower Defense TD By Raw Sunshine, LLC
      Bundle ID: com.sunshine.towerrushlegend
      App Store Link: https://apps.apple.com/us/app/tower-rush-tower-defense-td/id6455461456?uo=4

       

      🤩 Hack Features

      - Elixir Freeze
      - AI Freeze [ Can't Place The Tower ] 

        • Informative
        • Agree
        • Winner
        • Like
      • 10 replies
    • Tower Rush - Tower Defense TD v2.0.1 [ +2 Jailed ] AI Freeze
      Modded/Hacked App: Tower Rush - Tower Defense TD By Raw Sunshine, LLC
      Bundle ID: com.sunshine.towerrushlegend
      App Store Link: https://apps.apple.com/us/app/tower-rush-tower-defense-td/id6455461456?uo=4
       

      🤩 Hack Features

      - Elixir Freeze
      - AI Freeze [ Can't Place The Tower ]

        • Like
      • 3 replies
    • Royal Kingdom v19048 [ +9 Jailed ] Auto Win
      Modded/Hacked App: Royal Kingdom By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/us/app/royal-kingdom/id1606549505?uo=4


      Hack Features:

      - Coins [ Win Match ]

      - Potions

      - Lives Free

      - Booster Max

      - ViP Frame Unlock

      - Kingdom Pass Free

      - District unlock [ One Task Only ]

      - Auto Win [ Just One Move ]

      - Colour Spawn [ Blue Green Red Yellow Pink Orange ] Choose One Only


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      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
      • 52 replies
    • Royal Kingdom v19048 [ +9 Cheats ] Auto Win
      Modded/Hacked App: Royal Kingdom By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/us/app/royal-kingdom/id1606549505?uo=4



      Hack Features:
      - Coins [ Win Match ]

      - Potions

      - Lives Free

      - Booster Max

      - ViP Frame Unlock

      - Kingdom Pass Free

      - District unlock [ One Task Only ]

      - Auto Win [ Just One Move ]

      - Colour Spawn [ Blue Green Red Yellow Pink Orange ] Choose One Only


      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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 43 replies
    • Galaxiga - Classic 80s Arcade V10.86 [ +7 Jailed ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


      Hack Features:

      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ]

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ] Easy To Win PvP NO Bannnn


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Winner
        • Like
      • 43 replies
    • Galaxiga - Classic 80s Arcade V10.86 [ +7 Cheats ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ] Maybe Effect PvP 

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ]

      Not3:- Don't Abuse The Hack Incase Banned Lower Chances Maybe


      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/


      iOS Hack Download Link:

      Hidden Content

      Download Hack
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 76 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