Asking about remainstatpoint Packet

09/01/2023 08:05 T0o0P#1
i was added checkboxs for int/str to Auto Up point while put select in box
its working fine but its just send 1 point only and stopped

So i just asking if any one can Help For this Case or How To do it
i know it want to add like while loop

im just new in C++ but can't get the packets and don't know how to use it

i mean its like while (@RemainstatPoint > 0 And checkbox str selected )
{
send packet str/int
}
i know the idea but can't write it yet :saitama:
09/01/2023 17:59 qoaway#2
you must get player ptr (in this case local player) which is stored at 0x00EEF5EC
than remaining stat points is on offset 0x884 (2 bytes)

add handlers to 0xB050 and 0xB051 (str/int update)
on each handler send 0x7050 or 0x7051 respectively if (*(short*)((char*)(*(dword**)0x00EEF5EC) + 0x884) > 0)
09/02/2023 00:07 T0o0P#3
Quote:
Originally Posted by qoaway View Post
you must get player ptr (in this case local player) which is stored at 0x00EEF5EC
than remaining stat points is on offset 0x884 (2 bytes)

add handlers to 0xB050 and 0xB051 (str/int update)
on each handler send 0x7050 or 0x7051 respectively if (*(short*)((char*)(*(dword**)0x00EEF5EC) + 0x884) > 0)

Thanks For ur info i will try with it