Hi guys,
here i am :3
today i want help these guys who want create her own playerid tool so i wrote a little exe which should help you.
-> run it and it will return 3 addresses in bubble.txt
The first address -> Too read out the informations // see example
The second address -> Too read out the player number
The third address -> Too set the state what the tool should do // see example
Example in AutoIT ->
^sry for dat was fast coding
here i am :3
today i want help these guys who want create her own playerid tool so i wrote a little exe which should help you.
-> run it and it will return 3 addresses in bubble.txt
The first address -> Too read out the informations // see example
The second address -> Too read out the player number
The third address -> Too set the state what the tool should do // see example
Example in AutoIT ->
Code:
Func _GetPlayer($Handle_Process, $LPoint, $PN_Pointer, $PL_Pointer) WriteProcessMemory($Handle_Process,"0x" & $LPoint,"01","dword") Local $Player_[16][3] Do sleep(100) Until ReadProcessMemory($Handle_Process,'0x' & $LPoint, 'dword') = 0 Dim $Number = ReadProcessMemory($Handle_Process,'0x' & $PN_Pointer, 'dword') for $i = 0 to $Number-1 $Player_[$i][0] = ReadProcessMemory($Handle_Process,'0x' & Hex(Dec($PL_Pointer) + $i * 24,8), 'dword') $Player_[$i][1] = ReadProcessMemory($Handle_Process,'0x' & Hex(Dec($PL_Pointer) + $i * 24 + 4,8), 'dword') $Player_[$i][2] = ReadProcessMemory($Handle_Process,'0x' & Hex(Dec($PL_Pointer) + $i * 24 + 8,8), 'char[16]') Next return $Player_ EndFunc