Juneitor Solid & Active Platinian Nov 2, 2023 #1 Someone help me how hook this and make it false RVA: 0x2297294 Offset: VA:0x2297294 Slot: 5 Public virtual Void set_MaxHealthPoint(BigInteger Value)
Someone help me how hook this and make it false RVA: 0x2297294 Offset: VA:0x2297294 Slot: 5 Public virtual Void set_MaxHealthPoint(BigInteger Value)
blank667 Platinian Nov 30, 2023 #3 With frida : JavaScript: Interceptor.attach(ptr("0x2297294"), { onEnter: function (args) { var newValue = ... // ADD THE VALUE HERE args[0] = newValue; console.log("Nice hook : " + newValue); }, onLeave: function (retval) { console.log("Value successfuly modified"); } }); Upvote 0 Downvote
With frida : JavaScript: Interceptor.attach(ptr("0x2297294"), { onEnter: function (args) { var newValue = ... // ADD THE VALUE HERE args[0] = newValue; console.log("Nice hook : " + newValue); }, onLeave: function (retval) { console.log("Value successfuly modified"); } });
nowhere_222 I am PLATINMODS! Skilled Nov 30, 2023 #4 Hook with this hex bro: - 01 00 A0 E1 1E FF 2F E1 Upvote 0 Downvote