import
"frida-il2cpp-bridge"
;
Il2Cpp.perform(() => {
const AssembleCSharp = Il2Cpp.domain.assembly(
"hall_xy"
).image;
const HybridCLRRuntimeManager = AssembleCSharp.
class
(
'HybridCLRRuntimeManager'
);
const Load = HybridCLRRuntimeManager.method(
'LoadDll'
);
Load.implementation =
function
(hotFixFileName: Il2Cpp.String, target: Il2Cpp.Method) {
console.log(`LoadDll called
with
argument: ${hotFixFileName}`);
const result =
this
.method(
'LoadDll'
).invoke(hotFixFileName, target);
console.log(`LoadDll returned: ${result}`);
return
result;
}
});