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

    • Backpack Rush v1.682.213 [ +20 Cheats ] Currency Max
      Modded/Hacked App: Backpack Rush By Noodle Games Limited
      Bundle ID: com.onicore.backpack.rush
      iTunes Store Link: https://apps.apple.com/us/app/backpack-rush/id6736857029?uo=4

      Hack Features:
      - ADS Ticket

      - Gems

      - Gold

      - Energy

      - Silver Coins [ Merge Weapons ]

      - Summon Coins

      - Heroic Water [ Hero Up ]

      - Meteor Essence [ Gear Refining ]

      - Talent Book +2

      - Core Evo Stone [ Pet Evo Up ]

      - Fish Hook [ Obtain Gear During A Voyage ]

      - Pickaxe [ Mine ]

      - Blueprint [ Outfit Equip UP ]

      - Fragment [ Gear Up ]

      - Fragment [ Pet UP ]

      - Dungeon Keys +3

      - Spin

      - Enemy Status [ HP ATK 0 ] Easy Kill

      - DMG [ Outfit Just Equip & Unequip ]

      - HP [ Outfit Just Equip & Unequip ]


      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
        • Thanks
        • Winner
        • Like
      • 40 replies
    • Backpack Rush v1.682.213 [ +20 Jailed ] Currency Max
      Modded/Hacked App: Backpack Rush By Noodle Games Limited
      Bundle ID: com.onicore.backpack.rush
      iTunes Store Link: https://apps.apple.com/us/app/backpack-rush/id6736857029?uo=4

      Hack Features:

      - ADS Ticket

      - Gems

      - Gold

      - Energy

      - Silver Coins [ Merge Weapons ]

      - Summon Coins

      - Heroic Water [ Hero Up ]

      - Meteor Essence [ Gear Refining ]

      - Talent Book +2

      - Core Evo Stone [ Pet Evo Up ]

      - Fish Hook [ Obtain Gear During A Voyage ]

      - Pickaxe [ Mine ]

      - Blueprint [ Outfit Equip UP ]

      - Fragment [ Gear Up ]

      - Fragment [ Pet UP ]

      - Dungeon Keys +3

      - Spin

      - Enemy Status [ HP ATK 0 ] Easy Kill

      - DMG [ Outfit Just Equip & Unequip ]

      - HP [ Outfit Just Equip & Unequip ]

       
      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
        • Haha
        • Thanks
        • Winner
        • Like
      • 40 replies
    • Zooba: Zoo Battle Royale Game v5.23.0 Jailed Cheats +2
      Modded/Hacked App: Zooba: Zoo Battle Royale Games By Wildlife Studios Limited
      Bundle ID: com.fungames.battleroyale
      iTunes Store Link: https://apps.apple.com/us/app/zooba-zoo-battle-royale-games/id1459402952?uo=4


      Hack Features:
      - Map Hacks
      - Allow Shoot in Water


      Jailbreak required hack(s): https://iosgods.com/topic/131104-arm64-zooba-zoo-battle-royale-game-cheats-all-versions-2/


      iOS Hack Download Link: https://iosgods.com/topic/131134-arm64-zooba-zoo-battle-royale-game-v320-jailed-cheats-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,320 replies
    • [ ReDive TW ] 超異域公主連結!Re:Dive Cheats v5.2.0 +2
      Modded/Hacked App: 超異域公主連結!Re:Dive By So-net Entertainment Taiwan Limited
      Bundle ID: tw.sonet.princessconnect
      iTunes Store Link: https://apps.apple.com/tw/app/%E8%B6%85%E7%95%B0%E5%9F%9F%E5%85%AC%E4%B8%BB%E9%80%A3%E7%B5%90-re-dive/id1390473317?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

       

      Non-Jailbroken Hack: https://iosgods.com/topic/186660-redive-tw-%E8%B6%85%E7%95%B0%E5%9F%9F%E5%85%AC%E4%B8%BB%E9%80%A3%E7%B5%90%EF%BC%81redive-hack/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/134431-redive-tw-%E8%B6%85%E7%95%B0%E5%9F%9F%E5%85%AC%E4%B8%BB%E9%80%A3%E7%B5%90%EF%BC%81redive-cheats-v500-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 277 replies
    • My Private Kitchen Dream v1.8.4 [Unlimited Diamonds]
      Modded/Hacked App: My Private Kitchen Dream By IFLYTEK (HONG KONG) COMPANY LIMITED
      Bundle ID: com.xfgames.privatekitchen
      App Store Link: https://apps.apple.com/us/app/my-private-kitchen-dream/id6502279383?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 Diamonds

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/189759-my-private-kitchen-dream-v184-unlimited-diamonds/
        • Agree
        • Winner
        • Like
      • 12 replies
    • Yukon: Family Adventure v1.64.0 [ +4++ Cheats ] Everything Unlimited
      Modded/Hacked App: Yukon: Family Adventure By Enixan Europe Limited
      Bundle ID: com.enixan.yukon.family.adventure
      iTunes Store Link: https://apps.apple.com/us/app/yukon-family-adventure/id6455041311?uo=4


      🤩 Hack Features

      - Gems

      - Energy

      - Items

      - EXP
        • Agree
        • Thanks
        • Winner
        • Like
      • 20 replies
    • Yukon: Family Adventure v1.64.0 [ +4++ Jailed ] Everything Unlimited
      Modded/Hacked App: Yukon: Family Adventure By Enixan Europe Limited
      Bundle ID: com.enixan.yukon.family.adventure
      iTunes Store Link: https://apps.apple.com/us/app/yukon-family-adventure/id6455041311?uo=4


      🤩 Hack Features

      - Gems

      - Energy

      - Items

      - EXP
        • Informative
        • Haha
        • Thanks
        • Winner
        • Like
      • 23 replies
    • Angry Birds 2 Cheats v4.0.5 +1 [ Infinite Currencies ]
      Modded/Hacked App: Angry Birds 2 By Rovio Entertainment Oyj
      Bundle ID: com.rovio.baba
      iTunes Store Link: https://apps.apple.com/us/app/angry-birds-2/id880047117?uo=4


      Hack Features:
      - Infinite Currencies ( Spend some/ Get some )


      Non-Jailbroken & No Jailbreak required hack(s):  https://iosgods.com/topic/70081-angry-birds-2-v2600-jailed-cheats-2/


      Hack Download Link: https://iosgods.com/topic/72039-angry-birds-2-cheats-v2600-1-infinite-currencies/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,963 replies
    • Go Go Wolf! Cheats v6.1 +4
      Modded/Hacked App: Go Go Wolf! By MONSTER PLANET Corp.
      Bundle ID: com.MonsterPlanet.WolfGame
      App Store Link: https://apps.apple.com/us/app/go-go-wolf/id6572283560?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
      - Instant Skills
      - Freeze Currencies

       

      Non-Jailbroken Hack: https://iosgods.com/topic/198033-go-go-wolf-v52-jailed-cheats-4/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/198032-go-go-wolf-cheats-v52-4/
        • Winner
        • Like
      • 19 replies
    • Night Hunt: The Vampire Tower v1.2.3 +3 Jailed Cheats [ God Mode ]
      Modded/Hacked App: Night Hunt: The Vampire Tower By Mirrormagic Games Ltd
      Bundle ID: com.mirrormagic.vampires
      App Store Link: https://apps.apple.com/us/app/night-hunt-the-vampire-tower/id6746669165?uo=4

       
       

      🤩 Hack Features

      - God Mode
      - No Skill Cooldown
      - All Skills Unlocked In-Game
        • Winner
        • Like
      • 5 replies
    • Night Hunt: The Vampire Tower v1.2.3 +3 Cheats [ God Mode ]
      Modded/Hacked App: Night Hunt: The Vampire Tower By Mirrormagic Games Ltd
      Bundle ID: com.mirrormagic.vampires
      App Store Link: https://apps.apple.com/us/app/night-hunt-the-vampire-tower/id6746669165?uo=4

       


      🤩 Hack Features

      - God Mode
      - No Skill Cooldown
      - All Skills Unlocked In-Game
        • Informative
        • Agree
        • Winner
        • Like
      • 4 replies
    • Dawn of Ages: Medieval Games v2.1.3 +5 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Dawn of Ages: total war battle By BoomBit, Inc.
      Bundle ID: com.stratospheregames.dawnofages
      App Store Link: https://apps.apple.com/us/app/dawn-of-ages-total-war-battle/id6477473268?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Dumb Enemy
      - Premium Enabled
        • Agree
        • Winner
        • Like
      • 35 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