Jump to content

Hacking Unity Games with .Net Reflector (Assembly-CSharp.dll Hacking)


49 posts in this topic

Recommended Posts

Updated (edited)

Hey there :)

 

A new tutorial for you guys.

Today I'll show you how to hack unity games.

The file you will hack of a unity game is here: apk-assets-bin-Data-Managed-Assembly-CSharp.dll

 

What do we need?

Java SE v8

.Net Reflector --> http://bit.ly/28YD3WW (Cracked version)

- Reflexil to edit the functions easier --> http://reflexil.net/ OR http://bit.ly/28WgqC6

- The apk you want to hack, I use subway surfer for this version (I'll use a old version because Bluestacks can't handle a new version)

- 7zip,winrar etc to unzip the .apk.

- ZipSigner: https://play.google.com/store/apps/details?id=kellinwood.zipsigner2&hl=en

 

Apk I use: http://bit.ly/292NcGK

 

NOTE: Not any game is a unity game.

 

Let's start!

Okey, so.. Open the program .Net Reflector after you installed it. Load the Assembly-CSharp.dll in it.

You find this file after you did unzip the apk in: assets-bin-Data-Managed-HERE

I always remove all the other files on the left side using the "Delete/Del" button on your keyboard because they're anoying as f*ck.

 

Sb6h9fv.png

 

Once they're gone, open the file from the game in the program.

Let's set up reflixil now. You've downloaded the reflexil file, you should've unzipped it.

In reflector you see a option called "Tools", go to it, go to "Add-Ins" and now click on the "+" icon.

Locate to your unzipped folder, and select "Reflexil.Reflector.AIO". Now go again to "Tools" and select Reflexil v2.0

 

It will look like this now:

 

W7BRxTU.png

 

Now click the search button or "f3" button & now you have to turn on "Search Member" CTL + M OR:

 

nSatUNd.png

 

Okey, Let's search for some functions. There are multiply options of coure, but I'll call some here:

 

Coins

Gems

Gold

Diamonts

Money

Cash

Currency

get_'gold,coins etc'

get_amountof'coins,keys,etc'

isUnlocked

isLocked

isFree

etc etc etc

 

So, Subway Surfers does have allot features which can be hacked.

Let's hack the coins, keys, boards & characters in this tutorial

coins & keys are int value's & board & characters are boolean value's

 

Let's search for 'coins'. I got ALLOT matches so do you, I will not show you a screenshot.

Let's search for 'get_coins'. You got only a few matches, normaly when you find this match in a game you will hack it. I did it too, but it didn't had any effect so I won't waste your time by doing it.

Let's search for 'get_amountof'. We got this:

 

iKHFcv8.png

 

It seems very intresting to me, why? Well we got matches with keys & coins + the declaring type is 'PlayerInfo' in my opinion that's intresting.

Let's double click 'get_amountOfCoins' we got this:

 

qKZrjst.png

 

So what now?

Well, ALWAYS delete this OpCode 'Idfld'. You don't want that one loaded.

Now, change Idarg.0 to 'idc.i4' by clicking right mouse button on Idarg.0 and click edit.

It will look like this:

 

aKj5VNH.png

 

NOTE: Change Operand type to Int32!!!!

 

Click 'Update' and do the same for 'get_amountOfKeys'

 

Now let's unlock the hoverboards.

Search for: isUnlocked, no match you'll see. Search for isHoverboardUnlocked

You got 2 matches, which one will you take? Well the one with declaring type 'HoverboardStickerManager' says this:

 

0TkqWb9.png

See this: 'It says: return PlayerInfo.Instance.isHoverboardUnlocked(type);'

Double click isHoverboardUnlocked because it says that's what it returns.

 

WOW! You got ALLOT bullsh*t around there :p

What do we want to do with the function? Return it to TRUE ofcourse!

What do we do now? In this menu (see picture) we have to keep only 2 instructions, it doesn't matter which one. Just delete everything until you keep 2 instructions

 

FtLHpa7.png

 

After deleting until there are 2 instructions, it will look like this (you may have other instructions):

 

b0XOERn.png

 

I got this, you can get totally something else. I'll explain you what this means anyways because we both need those instructions to hack it

See the OpCode of both

Idc.i4,0 --> FALSE

ret ---> RETURN --> Offset of ret is '1' this means "TRUE"

So it says: HoverboardUnlocked = FALSE = TRUE... hmmmm bleghhhh  :wallbash:

 

What to do now?

Change the first instructions (Idc.i4.0) to Idc.i4.1 this means TRUE

IF your second instruction is NOT 'ret' then change it to 'ret'.

What it says now: HoverboardUnlocked = TRUE = TRUE

 

CjnEp5w.png

 

 

Let's do the same for the Characters..

Search for 'isCharacterUnlocked' you may get more matches.I do only get one...

 

y32ZPZh.png

 

 

It tells me it does return 'PlayerInfo.Instance.IsCollectionCompelete(type);

Double Click isCollectionComplete.

Delete all instructions until you keep 2 over

Change the first instruction to 'Idc.i4.1' and change the second to 'ret' (RETURN)

 

TIP: The Subway Surfers Tutorial is very anoying in my opinion.

Search for: get_IsTutorialCompleted and return it to true like you did with the Hoverboards & Characters!

 

Okey.. we're done. Save the Assembly-CSharp.dll

How?

 

AtYe7ZJ.png

 

Click 'Save as...' --> locate to the unzipped .apk-assets-bin-Data-Managed, it will tell you to save it as: Assembly-CSharp.Patched.dll but we want it as: Assembly-CSharp.dll

It will ask if you want to overwrite, click yes.

 

Locate to your unzipped .apk - select ALL files - make a .zip archive but rename the .zip to apk:

 

GcLCqFB.png

 

Copy your .apk to your phone or to bluestacks, sign in it with zipsigner

Zipsigner: https://play.google.com/store/apps/details?id=kellinwood.zipsigner2&hl=en

 

Open ZipSigner find your .apk by clicking here:

 

NgjrqDg.png

 

When you found it, click 'Sign The File' and wait.

After it's done signing, locate it in your file manager & install it. Open it when it's done

 

NOTE: If you don't like non serious people, skip the upcomming screenshot and go to one after it  lol..

 

Moment of truth.......

Silence please.....

 

IS IT HACKED???!

Kidding me, Bluestacks hates me:

1GyVS0E.png

 

Let's open again -___-

 

Ah I got it working.

 

Coins & Keys:

 

CDZTqjL.png

 

Characters:

 

TTtOcrp.png

 

Hoverboards:

 

Rzy27VH.png

 

Functions WE hacked:

get_amountOfCoins

get_amountOfKeys

isHoverboardUnlocked

isCharacterUnlocked

some of you may did: get_isTutorialCompleted because I mentioned that one too.

 

EXTRA

isThemeUnlockedForCharacter

isThemeSeen

isThemeOwned

isThemeActive

get_DoubleScore

get_ScoreMultiplier

 

Declaring Type ´PlayerInfo´ are the most functions in to be hacked.

 

Hope you learned something from this tutorial!

 

Credits: xShadowGhostx

Updated by xShadowGhostx
  • Like 1
  • Agree 1
Posted

Yes is very good guide i have hacked many games thx to this but one question why is this explained?

 

thx in advanced

 

happy life

 

- screenz

Posted

Yes is very good guide i have hacked many games thx to this but one question why is this explained?

 

thx in advanced

 

happy life

 

- Tyramzu

Don't get your question.

 

Yes is very good guide i have hacked many games thx to this but one question why is this explained?

 

thx in advanced

 

happy life

 

- screenz

I don't  understand you either

Posted

i want too know how 2 use this for hacking dungeon huntor 5

 

i love dugeon hunter 5 is my favrite game

 

how i hack dh5 with this reflector.

 

happy life

 

-tyramize

Oh god, is that game even unity coded?

Posted (edited)

i want too know how 2 use this for hacking clash of cans

 

i love clash of cans is my favrite game

 

how i hack coc with this reflector.

 

sweet lief

Updated by screenz
Posted

i dont no, also i love clans of clash, its good game but much expenciv, how i get gems and money?

 

i ask for a frent of me, he loves dh5 to.

 

pleas hak clas of clashns and dugeon huter 5 

 

happy life

 

-tiramyze

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

    • Subway Surfers Cheats (Auto Update) +5
      Modded/Hacked App: Subway Surfers By Sybo Games ApS
      Bundle ID: com.kiloo.subwaysurfers
      iTunes Store Link: https://apps.apple.com/us/app/subway-surfers/id512939461?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

      - Free Store (not Free iAP)
      - Free iAP (ViP Only)
      - Unlock Characters Outfit
      - Custom Jump Height
      - No Clip (To end level swipe to left til you get dizzy, swipe again and you will lose)

       

      Non-Jailbroken Hack: https://iosgods.com/topic/119795-subway-surfers-v3425-jailed-cheats-5/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/119793-subway-surfers-cheats-v3430-5/
        • Informative
        • Agree
        • Haha
      • 2,410 replies
    • Kawaii Mansion: Find It Out Cheats (Auto Update) +1
      Modded/Hacked App: Kawaii Mansion: Find It Out By Suga Pte. Ltd.
      Bundle ID: co.imba.kawaiimansion
      App Store Link: https://apps.apple.com/us/app/kawaii-mansion-find-it-out/id1542756167?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

      - Freeze Currencies

       

      Non-Jailbroken Hack: https://iosgods.com/topic/147025-kawaii-mansion-find-it-out-auto-update-jailed-cheats-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147023-kawaii-mansion-find-it-out-cheats-auto-update-1/
      • 14 replies
    • DungeonSlasher (Auto Update) +3 Jailed Cheats
      Modded/Hacked App: DungeonSlasher By gihyeon lim
      Bundle ID: com.nspgames.dungeonslasher
      iTunes Store Link: https://apps.apple.com/us/app/dungeonslasher/id1620305888?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Never Die
      - Drop Multiplier
      - Free iAP


      Jailbreak required hack(s): https://iosgods.com/topic/174645-dungeonslasher-auto-update-3-cheats/


      iOS Hack Download IPA Link: https://iosgods.com/topic/185302-dungeonslasher-auto-update-3-jailed-cheats/
      • 153 replies
    • Battle Camp Cheats v5.41.1 +2
      Modded/Hacked App: Battle Camp By Battlecamp AB
      Bundle ID: com.battlecamp.monsters
      iTunes Store Link: https://apps.apple.com/us/app/battle-camp/id1555773592?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
      - One Hit Kill

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147532-battle-camp-cheats-v5360-2/
      • 141 replies
    • Sushi Bar Idle Cheats v2.8.14 +2
      Modded/Hacked App: Sushi Bar Idle by GREEN PANDA
      Bundle ID: com.gangame.sushibar
      iTunes Store Link: https://itunes.apple.com/us/app/sushi-bar-idle/id1438089337?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Infinite Coins
      - No Ads


      Hack Download Link: https://iosgods.com/topic/87577-arm64-sushi-bar-idle-cheats-v115-2/
      • 98 replies
    • Demon Hunter Idle Cheats v1.20.0 +3
      Modded/Hacked App: Demon Hunter Idle By MOBIRIX
      Bundle ID: com.mobirix.mbpdh
      iTunes Store Link: https://apps.apple.com/us/app/demon-hunter-idle/id6472879858?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Freeze Currencies*

      *NOTE: Do not abuse or buy ViP for just this cheat


      iOS Hack Download Link: https://iosgods.com/topic/183710-demon-hunter-idle-cheats-v102-3/
      • 197 replies
    • KPop Idol Queens Production (Auto Update) +2 Cheats
      Modded/Hacked App: Idol Queens Production By kim junghyun
      Bundle ID: sunbeesoft.queensidol.com
      iTunes Store Link: https://apps.apple.com/us/app/idol-queens-production/id1571083536?uo=4


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


      Hack Features:
      - No Stress
      - No Fatigue
      - Free Auto Play


      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







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down 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:
      - @Zahir


      Cheat Video/Screenshots:

      N/A
      • 48 replies
    • Zooba: Zoo Battle Royale Game v6.7.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/
      • 1,376 replies
    • The Tower - Idle Tower Defense v27.5.0 Jailed Cheats +2
      Modded/Hacked App: The Tower - Idle Tower Defense By Tech Tree Games LLC
      Bundle ID: com.TechTreeGames.TheTower
      App Store Link: https://apps.apple.com/us/app/the-tower-idle-tower-defense/id1575590830?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

      - Free iAP ( Turn on inside iOSGods Mod Menu first )
      - iGameGod Cheat Engine Enabled ( modify in-game currency and speed up stage )

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/154025-the-tower-idle-tower-defense-v2706-jailed-cheats-2/
      • 193 replies
    • Angry Birds 2 Cheats v8.0.1 +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
        • Like
      • 1,988 replies
    • Samkok Heroes TD Dynasty Tower Defense v2.12.164 [ +8 Cheats ] ViP Active
      Modded/Hacked App: Samkok Heroes TD By Suga Pte. Ltd.
      Bundle ID: co.imba.threekingdoms.towerdefense
      App Store Link: https://apps.apple.com/us/app/samkok-heroes-td/id6758647943?uo=4
      🤩 Hack Features

      - HP MAX
      - ATK MAX
      - iGG Speed X6 / Wave Skiper
      ::::: VIP :::::
      - ViP Active
      - ADS No
      - Special Pack Daily / Rewards Claim Unlimited
      - Special Pack Weekly / Rewards Claim Unlimited
      - Special Pack Monthly / Rewards Claim Unlimited
      - Hero Unlocked
      • 1 reply
    • Samkok Heroes TD Dynasty Tower Defense v2.12.164 [ +8 Jailed ] ViP Active
      Modded/Hacked App: Samkok Heroes TD By Suga Pte. Ltd.
      Bundle ID: co.imba.threekingdoms.towerdefense
      App Store Link: https://apps.apple.com/us/app/samkok-heroes-td/id6758647943?uo=4

      🤩 Hack Features

      - HP MAX
      - ATK MAX
      - iGG Speed X6 / Wave Skiper
      ::::: VIP :::::
      - ViP Active
      - ADS No
      - Special Pack Daily / Rewards Claim Unlimited
      - Special Pack Weekly / Rewards Claim Unlimited
      - Special Pack Monthly / Rewards Claim Unlimited
      - Hero Unlocked
      • 3 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