| View previous topic :: View next topic |
| Author |
Message |
Xocitus Newbie cheater
Reputation: 0
Joined: 19 Jul 2007 Posts: 15
|
Posted: Mon Oct 01, 2007 4:37 am Post subject: Please Help Value Editing |
|
|
How do u edit values with a offset?? in delphi...
Last edited by Xocitus on Mon Oct 01, 2007 4:46 am; edited 2 times in total |
|
| Back to top |
|
 |
assaf84 Expert Cheater
Reputation: 0
Joined: 03 Oct 2006 Posts: 238
|
Posted: Mon Oct 01, 2007 4:45 am Post subject: |
|
|
You want answer only from dark byte?
|
|
| Back to top |
|
 |
Xocitus Newbie cheater
Reputation: 0
Joined: 19 Jul 2007 Posts: 15
|
Posted: Mon Oct 01, 2007 4:46 am Post subject: :p |
|
|
No every usefull answer is ok
|
|
| Back to top |
|
 |
compactwater I post too much
Reputation: 8
Joined: 02 Aug 2006 Posts: 3923
|
Posted: Mon Oct 01, 2007 4:52 am Post subject: |
|
|
| Code: | asm
mov eax,ADDRESS //if in hexadecimal, it must end in h. "5B667Fh"
add eax+OFFSET
//Do stuff to eax, and 'mov' it wherever needed
end; |
Is this what you mean?
|
|
| Back to top |
|
 |
Xocitus Newbie cheater
Reputation: 0
Joined: 19 Jul 2007 Posts: 15
|
Posted: Mon Oct 01, 2007 5:04 am Post subject: |
|
|
How would i use it??
Like
| Code: | asm
mov eax,8B5288h //if in hexadecimal, it must end in h. "5B667Fh"
add eax+54h
//Do stuff to eax, and 'mov' it wherever needed
//and then:
EditMemory(.......what here?) //EditMemory(Address: Integer; Value: Integer)
end; |
|
|
| Back to top |
|
 |
Noz3001 I'm a spammer
Reputation: 26
Joined: 29 May 2006 Posts: 6220 Location: /dev/null
|
Posted: Mon Oct 01, 2007 9:31 am Post subject: |
|
|
| Code: | | EditMemory((8B5288h+54h), Value Goes Here ); |
That was just a guess according to your post. I don't really know delphi. You can try it and hope for the best tho =)
|
|
| Back to top |
|
 |
Xocitus Newbie cheater
Reputation: 0
Joined: 19 Jul 2007 Posts: 15
|
Posted: Wed Oct 03, 2007 11:41 am Post subject: |
|
|
| Not working, please i really need it :p
|
|
| Back to top |
|
 |
zart Master Cheater
Reputation: 0
Joined: 20 Aug 2007 Posts: 351 Location: russia
|
Posted: Wed Oct 03, 2007 3:27 pm Post subject: |
|
|
Just use readprocessmemory and writeprocessmemory. That would work in delphi.
This is the same post that everyone always asks, over and over.
_________________
0x7A 0x61 0x72 0x74
TEAM RESURRECTiON |
|
| Back to top |
|
 |
Xocitus Newbie cheater
Reputation: 0
Joined: 19 Jul 2007 Posts: 15
|
Posted: Fri Oct 05, 2007 10:21 am Post subject: |
|
|
I tried ReadProcess memory:
With:
| Code: | function ReadMemory(Address: Integer; Value: Integer): Boolean;
var
ProcessId, WindowName, HandleWindow: Integer;
Write : DWord;
p : pointer;
begin
WindowName := FindWindow(nil, 'Form1');
If WindowName = 0 then
begin
Result := False;
Exit;
end;
p := ptr(Address);
GetWindowThreadProcessId(WindowName, @ProcessId);
HandleWindow := OpenProcess(PROCESS_ALL_ACCESS, False, ProcessId);
Readprocessmemory(HandleWindow, p, @Value, 4, Write);
CloseHandle(HandleWindow);
Result := True;
end; |
But isnt working right i get another value then i get with ce...
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25821 Location: The netherlands
|
Posted: Fri Oct 05, 2007 11:47 am Post subject: |
|
|
if ReadProcessMemory(Handle, pointer($8B5288), @temp,4,write) then
begin
temp:=temp+$54;
WriteProcessMemory(handle,pointer(temp),@value,4,write);
end;
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
Xocitus Newbie cheater
Reputation: 0
Joined: 19 Jul 2007 Posts: 15
|
Posted: Fri Oct 05, 2007 12:18 pm Post subject: |
|
|
You are seriously fucking good
i can make CSS hacks because of you,
Ps(in dutch): Nederlanders zijn gewoon het beste
|
|
| Back to top |
|
 |
hastir Advanced Cheater
Reputation: 0
Joined: 27 Aug 2007 Posts: 62
|
Posted: Fri Oct 05, 2007 12:35 pm Post subject: |
|
|
| Xocitus wrote: | You are seriously fucking good
i can make CSS hacks because of you,
Ps(in dutch): Nederlanders zijn gewoon het beste  |
alleen jij
_________________
|
|
| Back to top |
|
 |
|