Code:
var PH : THandle; PID, ThID : DWORD; b : DWORD; H : THandle; currentvalue: Integer; valueTarget: Integer; begin // H := FindWindow(nil, Pchar(FWindow)); if (H=0) then exit; ThID := GetWindowThreadProcessId(H, @PID); PH := OpenProcess(PROCESS_ALL_ACCESS,FALSE,PID); readprocessmemory(PH,Ptr(OFFBase),@currentvalue,SizeOF(currentvalue),b); currentvalue:=currentvalue+$20; readprocessmemory(PH,ptr(currentvalue),@currentvalue,SizeOF(currentvalue),b); currentvalue:=currentvalue+OffTarget; writeprocessmemory(PH,ptr(currentvalue),@valueTarget,SizeOF(valueTarget),b);






, find correct call-address for your client and enjoy targeting =)
