Hello
how to appear in hp label1 of Delphi, is how?:mofo:
anyone have a source of a bot in delphi?
how to appear in hp label1 of Delphi, is how?:mofo:
anyone have a source of a bot in delphi?
Note eax isn't the register, its just a variable name I tend to use for temporary addresses.Quote:
function gethp: Integer;
var
Written: cardinal;
eax: cardinal;
begin
ReadProcessMemory(PWIHandle, ptr(BaseAddr), @eax, Data, Written);
ReadProcessMemory(PWIHandle, ptr(eax + Charstruct), @eax, Data, Written);
ReadProcessMemory(PWIHandle, ptr(eax + AtmHPoffset), @Result, Data, Written);
end;