dinoid
Awesome Active Platinian
Is there a way to mod il2cpp methods other than hexpatching? As far as I've searched, ppl use C++ for modmenu and hooking purposes but not for modding it, they end up using hexpatch anyway... Is it possible to mod the dumped Assembly-Csharp.dll from il2cpp.so and then "recompiling" it in il2cpp again? Or inject a dll into il2cpp like pc games?
Hooking the il2cpp is like "injecting" a dll into it, or something like it. But I'm having a hard time finding ppl that use C++ in their mods.
Pseudocode:
Hooking the il2cpp is like "injecting" a dll into it, or something like it. But I'm having a hard time finding ppl that use C++ in their mods.
Pseudocode:
Code:
//don't take this "code" too seriously, it's for example purpose
void hook();
void getMethod(method){
method = newMethod; //This newMethod would be written in C++, giving the modder more freedom
}
//but what I found is ppl using like this
void hook();
void modMethod()){
methodOffset = newHex; //This newHex would be just a way to override the original hex, just like hexpatching but with a "modmenu"/toggle
}
Last edited: