| View previous topic :: View next topic |
| Author |
Message |
e!ns7e!n Cheater
Reputation: 0
Joined: 06 Sep 2007 Posts: 30
|
Posted: Tue Nov 13, 2007 9:16 am Post subject: delphi timer - freeze |
|
|
the last my stupid question
How to (omg-sry) freeze address with timer in delphi pls show me with code example
|
|
| Back to top |
|
 |
Flyte Peanuts!!!!
Reputation: 6
Joined: 19 Apr 2006 Posts: 1887 Location: Canada
|
Posted: Tue Nov 13, 2007 9:18 am Post subject: |
|
|
| Constantly use WriteProcessMemory() on that address. That way if it changes it will quickly change back.
|
|
| Back to top |
|
 |
e!ns7e!n Cheater
Reputation: 0
Joined: 06 Sep 2007 Posts: 30
|
Posted: Tue Nov 13, 2007 9:28 am Post subject: |
|
|
show me with code
how to freeze that:
| Code: | var value: dword;
....
begin
....
value := $98967F;
WriteProcessMemory(HandleWindow,ptr($0100579C),@value,4{or sizeof(value)},write); |
please write a code for the timer
|
|
| Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
|
| Back to top |
|
 |
e!ns7e!n Cheater
Reputation: 0
Joined: 06 Sep 2007 Posts: 30
|
Posted: Tue Nov 13, 2007 9:48 am Post subject: |
|
|
well give me code ! i drag timer in my form and ???
what i write to set timer to 15 mm sec on this address ! ?
i understand write and read process but freeze is my problem
|
|
| Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
Posted: Tue Nov 13, 2007 10:08 am Post subject: |
|
|
Did'nt i gave you a thread with the same question answered by Dark Byte?
_________________
|
|
| Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Tue Nov 13, 2007 10:13 am Post subject: |
|
|
| You don't "Feeze" addresses, ce doesn't do that, it sets the timer's invertal to "Freeze Invertal.text". (In the settings, Freeze Invertal text box is the value...)
|
|
| Back to top |
|
 |
glassen Advanced Cheater
Reputation: 0
Joined: 17 Nov 2006 Posts: 53
|
Posted: Tue Nov 13, 2007 12:43 pm Post subject: |
|
|
dam lolz ima noob
_________________
... |
|
| Back to top |
|
 |
ups2000ups I post too much
Reputation: 0
Joined: 31 Jul 2006 Posts: 2471
|
Posted: Tue Nov 13, 2007 12:44 pm Post subject: |
|
|
the code you posted put "$98967F" into a address Oo
| Code: |
var value: dword;
....
begin
....
value := $98967F;
WriteProcessMemory(HandleWindow,ptr($0100579C),@value,4{or sizeof(value)},write);
|
here you got 1 working
add a edit box named edit1
add a timer and put this code in it
the timer should have interval 1-250
| Code: |
var
x:dword; // idk what it does
value1:dword; // dword means it is a 4bytes address
newvalue1:integer; // the new value
begin
value1:=(newvalue1);
newvalue1:=strtoint(edit1.text);
writeprocessmemory(processhandle,pointeR($0100579C),@value1,4,x); // add edit1.text to address 0100579C in 4byte
|
set a value (4byte) in the edit1 and start the timer
_________________
dont complain about my english...
1*1 = 2? |
|
| Back to top |
|
 |
e!ns7e!n Cheater
Reputation: 0
Joined: 06 Sep 2007 Posts: 30
|
Posted: Tue Nov 13, 2007 1:10 pm Post subject: |
|
|
I wanted that to know! 10х
|
|
| Back to top |
|
 |
|