DARK_DEMON_SCRIPTER Posted April 6, 2023 Posted April 6, 2023 Hello guys I wanna edit void values in il2cpp to true I want the hex codes for both arm and arm64 pls help me
MAARS Posted April 6, 2023 Posted April 6, 2023 what the purpose of doing this ? since the game will not use the returned value, and i still will be surprise if that does not crash, anyways: ARM MOV r0, #0x1 BX LR 0100A0E31EFF2FE1 ARM64 MOV w0, #0x1 RET 20008052C0035FD6 ย
BadCase Posted April 6, 2023 Posted April 6, 2023 9 hours ago, DARK_DEMON_SCRIPTER said: Hello guys I wanna edit void values in il2cpp to true I want the hex codes for both arm and arm64 pls help me Basically a Void is doing things instead of returning a value, editing it to return a value will not have the desired effect and most times it will just behave as though the void method was not even calledย instead you will want to find the lines in it were the values it is handling are loaded and modify their LDR Also you can easily hook one void method and call another using the B arm instruction
Question
DARK_DEMON_SCRIPTER
Hello guys I wanna edit void values in il2cpp to true I want the hex codes for both arm and arm64 pls help me
4 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.