snowpatroll How do I cheat?
Reputation: 0
Joined: 28 Mar 2015 Posts: 4
|
Posted: Tue Aug 18, 2015 10:25 pm Post subject: [HELP] Finding process functions with cheat engine |
|
|
Hello friends,
I wonder how do you find functions and procedures of a process ... in the event of a match ...
example:
function Enviar_BroadCastMessage (message: string);
begin
xxxx
xxxx
xxxx
end;
and sending with
Enviar_BroadCastMessage ('Testing');
I can get the address of the function by OllyDbg researching the word in question and go on call $ address
So do a asm in line at Delphi to call this function with the message I want to ...
example
asm
push eax
lea eax, [message]
call [$ Address]
pop eax
end
But if I look at Cheat Engine it shows me another address of the memory function
in OllyDbg the correct function, so that I can make sending easily, but not all games come unpacked
so I can not read the OllyDbg, but in Cheat Engine believe that has how to find this function and others I would also like to find the function without having a fixed pre-text ...
Thanks in advance!
|
|