Posted: Mon Jun 16, 2008 3:15 pm Post subject: Re: Editing Memory in Delphi.
since you got your answer at the problems i will just notice about this
angerist wrote:
Then I need to repetitively freeze the address?
Code:
procedure SwearHack();
begin
while 1 = 1 do
begin
EditMyMemory($007F2B34, $42C80000);
Sleep(5);
end;
end;
But that's gonna freeze maplestory, So i have to run it in a new thread?
Code:
procedure TForm1.Button1Click(Sender: TObject);
var
ThreadID: Cardinal;
begin
CreateThread(nil, 0, @swearhack, nil, 0, ThreadID);
end;
Code:
procedure SwearHack();
begin
while 1 = 1 do
begin
EditMyMemory($007F2B34, $42C80000);
Sleep(5);
end;
end;
will freez because when you use "while 1 = 1 do" delphi wont care about anything else then get a value to stop the while thats why it freez
use a timer instead
anyway you dont need to repeat Swearhack Oo if you just change it it will be changed _________________
All times are GMT - 6 Hours Goto page Previous1, 2, 3
Page 3 of 3
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum