Page 1 of 1

Dealing with class names in opcodes

Posted: Thu Jun 20, 2019 4:49 pm
by RKH4X
Hi folks

Hopefully this is simple enough to answer.

I have activate mono features enabled.
I have an opcode that looks like this:

mov r11,CheatMenu:InitHeaders


Obviously that can't be injected. I assume that one can write something like:

FindMonoClass(init,"CheatMenu:InitHeaders")


and then change the above opcode to:

mov r11, init


Could someone please tell me what function I'm looking for that allows the compiler to handle this?

Many thanks

Re: Dealing with class names in opcodes

Posted: Thu Jun 20, 2019 6:30 pm
by Cake-san
Just go to your game_Data folder and just zip that whole Managed folder then send it here.

Then, I might be able to help you... :roll:

Re: Dealing with class names in opcodes

Posted: Fri Jun 21, 2019 8:57 am
by Bloodybone
You can just do this:

Code: Select all

mov r11,"CheatMenu:InitHeaders"