Jump to content

Question

4 answers to this question

Recommended Posts

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

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.