Tutorial ARM64 Unity String Function Hooking LGL Menu

how to patch hex? I tried to modify it by MemoryPatch, but it didn't work. I have tried to use Java Memory pokebyte, which can be modified successfully.
such as libil2cpp.so address 0x51E040 1F2003D5.
 
how to patch hex? I tried to modify it by MemoryPatch, but it didn't work. I have tried to use Java Memory pokebyte, which can be modified successfully.
such as libil2cpp.so address 0x51E040 1F2003D5.
some code:
gPatches.nodeath = MemoryPatch::createWithHex(il2cppBase + str2Offset(OBFUSCATE("0x51E040")), "1F 20 03 D5");

if (boolean)
gPatches.nodeath.Modify();
else
gPatches.nodeath.Restore();
break;
 
Back
Top Bottom