Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Memory Adress lesen
5. Jul 2010, 09:44
Hallo,
Zitat:
CPed +0x14 = Pointer to XYZ position structure (and rotation)
Da steht, dass dort ein Pointer steht! D.h. du musst zuerst den Pointer auslesen:
ReadProcessMemory(HandleWindow ,Pointer($B6F5F0+$14),@i,SizeOf(Pointer),cx);
Danach kannst du die X-Position auslesen:
ReadProcessMemory(HandleWindow ,Pointer(i+$30),@x,SizeOf(DWORD),cx);
Gruß
Neutral General
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
Geändert von Neutral General ( 5. Jul 2010 um 09:46 Uhr)
|