Recent content by Matt_code_guy

  1. advanced modding il2cpp question

    Im fine writing the code in C++ as well. So it is possible to hook C++ code?
  2. advanced modding il2cpp question

    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...
  3. debugger for unity game

    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...
  4. Unable to open Assembly-CSharp.dll in DnSpy

    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?
  5. Unable to open Assembly-CSharp.dll in DnSpy

    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 -...
  6. Learning advanced modding. Have questions

    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...
  7. Blocked. Modding unity APK's, dependency problems.

    Wow.... DNSpy is a million times better than reflexil! Thanks
  8. Any way to access stack trace of modded apk?

    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?
  9. install_failed_invalid_apk

    Thanks guys! Now its working for me. Using a tool like apktool constructed the apk in the right format solving my problem.
  10. install_failed_invalid_apk

    Thanks! I will give that a try
  11. install_failed_invalid_apk

    im not sure to be honest. isnt only the apk signed and not the files within it?
  12. install_failed_invalid_apk

    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...
  13. install_failed_invalid_apk

    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...
  14. install_failed_invalid_apk

    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...
  15. Blocked. Modding unity APK's, dependency problems.

    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...
Back
Top Bottom