Hacking 3Dash - RewardedIvan/3DPS GitHub Wiki
Modifying the assembly of 3Dash (aka hacking)
Tips
- Use unity's "IMGUI" for well, gui (buttons, text and other stuff)
- Original dnSpy contains malware, please don't use that
- Check out my reverse engineering, you will get familier with the client without looking at the code
Windows
- Download dnSpyEx
- Put the
Assembly-CSharp.dll
in to dnspy (you can find this in _data/managed) - Also there is a
PathCreator.dll
inside the directory - Do whatever you like :D you just have to know C#
- Then File > Save Module
Linux
- You can use wine to open exes (it may be a bit laggy though)
- You can compile dnSpyEx, make sure you have
dotnet
git clone --recursive https://github.com/dnSpyEx/dnSpy
cd dnSpy
dotnet build
MacOS
I have no idea