I had written some mods for a game, and as a result the developers started using IL2CPP. I am familiar with IL2CPP and how you go about modding it.
My question is if I know the implementation of the C# code, is there any way to inject it at the inspected offset.
let's say IL2CPPDumper reveals...
My current project is Android/Mac/Windows and I am set up for modding on all three environments.
The code is obfuscated. In a situation like this, having a debugger that could set breakpoints, view variable values in memory, and step through the code would be invaluable.
Given only a directory...
Thanks! I figured as much. I had read up on gdb and game guardian method for grabbing the assembly. Is there a tutorial or post somewhere which goes into the process of re-encrypting the assembly after I add my mods?
Once I get the decrypted assembly and add my mods, what do I do with it?
I have tried using several disassemblers, and I am unable to open it. It seems in every way like any other unity game, but for this game I am unable to open the assembly. I am wondering, is maybe this file encrypted? If so, how do I go about decrypting it?
Assembly download: Uploadfiles.io -...
Firstly, thank you all for contributing to this forum! The posts by others, the answers I have gotten have really help me make incredible progress into modding games.
I have been professionally programming for 12 years so once I get to a state where I can write code, compile, test I can make...
Hey guys!
So thanks to everyone here I am on a tear modding the heck out of APK's. Sometimes the code works well at compile time and not at run time. Is there any way to access a stack trace or any way to debug runtime errors?
so I'm 90% sure its not a problem with signing. My friend can do the full process, and if he uses my modded csharp-assembly.dll file, constructs it, signs it, installs it he see's error install_failed_invalid_apk. If he makes the same IL code changes, saves the csharp-assembly.dll and does the...
Correct me if I'm wrong but apktool is just for signing?
I am using jarsigner directly, whereas he uses a script to sign his. However... when he tries to take my generated csharp-assembly.dll and reconstruct/sign the apk it also gives him the error install_failed_invalid_apk when he tries to...
Hey everyone,
This site is the best. This my first big issue so hoping to find someone who can help.
My end goal: mod an apk.
I take the apk, unzip it, extract csharp_assembly.dll and open it with either ILSPY or .NetReflector8.5.
The AiO reflexil plugins are installed and seemingly working...
Hi all,
Thank you to everyone who posted tutorials. They have been super helpful.
I have been able to decompile my target APK with ILSpy and Reflexil and I have been able to edit basic variable values, and save it, re-install it, handle the obb file stuff and test the game.
I am trying to mod a...