Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Help with my engine dll proyect

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
force1758
How do I cheat?
Reputation: -1

Joined: 21 Feb 2011
Posts: 4
Location: venezuela

PostPosted: Fri Apr 13, 2012 12:03 pm    Post subject: Help with my engine dll proyect Reply with quote

Hello to all forum have come if I can help my project I am crendo engine in a dll and the problem is at the time of scanning memory game with the range of 00400000 to 7fffffff not I get anything but if I cut the range of 00400000 to 00500000 in short hops if they leave one or two ma want help with this project thanks greetings
TRANSLATION google translate

[code]Procedure Scan4Byte;
begin
try
form1.Listbox1.Clear;
form1.ListBox2.Clear;
Inicio := $01000000;
Fim := $02000000;
Tam := Fim - inicio;
Want := StrToInt( form1.Edit1.text );
Found := 0;
For i := 0 to tam do
begin

Endereco := Inicio + i;

If PDWord(Endereco)^ = Want then
Begin
EnderecoStr := IntToHex (endereco,8);
form1.ListBox1.Items.Add(enderecostr);
Found := Found + 1;
// ListBox2.items.Add( IntTOstr( Pbyte(Endereco)^ ));

end;
end;
except
end;
end;[/code][/code]
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Obitio
Advanced Cheater
Reputation: 0

Joined: 09 Apr 2012
Posts: 68
Location: null

PostPosted: Fri Apr 13, 2012 12:45 pm    Post subject: Reply with quote

here is my incomplete DLL MEMORY SCANNER IN DELPHI!:
mediafire(.)com(/)?l6dpmzmon6hxnuw
it's incomplete but it should tell you how to scan for the value.^^
-
SINful.
here is the code:
var
address,scantill,scanevery,value,data:DWORD;//dword=4 bytes..cardinal=4 bytes..pword=1 byte.
begin
if Button2.Caption='New scan' then begin
Edit1.Clear;
Button2.Caption:='First scan';
Edit1.Enabled:=true;
exit;
end;
try;
if edit1.Text='' then begin//the box is empty.
ShowMessage('First put in a value to scan for!');//shows a message.
exit;//don't execute anymore code and leave.
end;
ListBox1.Clear;
ListBox2.Clear;
Edit1.Enabled:=false;
//no more errors I can think of so let's get scanning~
address:=strtoint(edit2.text);
scantill:=strtoint(edit3.Text);//scan until it gets to this address.
value:=strtoint(edit1.text);
scanevery:=strtoint(Edit4.text);
Button2.Caption:='New scan';//since we are going to scan now.
Button3.Enabled:=true;
timer2.Enabled:=false;
while address<=scantill do begin//scan while it is smaller then or equal to..//note:this will only execute code from while address<=scantill do begin to end;
data:=pdword(address)^;//this tells the hack to scan for but not edit data!..easier way:data:=inttoint(pdword(address)^);
if data=value then begin
Listbox1.AddItem(inttostr(address),TObject(data));
Listbox2.AddItem(inttostr(data),TObject(address));//lol I had no clue what this means and I still don't^^
Edit5.Text:=inttostr(data);
end;
address:=address+scanevery;//lol if scanevery=1 then it will scan every address 1 by one...if it is 2 then it scans every other 2 addresses....I think you get it lol...
end;
except
on E:Eaccessviolation do begin//Very Happy so no access violations come up while scanning.
end;
end;
Back to top
View user's profile Send private message
force1758
How do I cheat?
Reputation: -1

Joined: 21 Feb 2011
Posts: 4
Location: venezuela

PostPosted: Fri Apr 13, 2012 10:57 pm    Post subject: Reply with quote

thanks for reply
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
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


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites