| View previous topic :: View next topic |
| Author |
Message |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Wed Jul 25, 2007 2:09 pm Post subject: Writeprocessmemory |
|
|
There is a game that i want to make something for.
Here is an example,
The address: 1234
With a value of : 800
i want to make the value 16000, and freeze that address. How would i do that in delphi?
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Wed Jul 25, 2007 2:13 pm Post subject: |
|
|
| repeatedly write to that address
|
|
| Back to top |
|
 |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Wed Jul 25, 2007 3:39 pm Post subject: |
|
|
Well, for the poke value, what should i put to make the value 16000?
i tried a4a1, and it gave the value 165.
|
|
| Back to top |
|
 |
KingZero Expert Cheater
Reputation: 0
Joined: 27 Jun 2006 Posts: 103
|
Posted: Wed Jul 25, 2007 5:09 pm Post subject: |
|
|
| If your talking about counterstrike it wont work.
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25820 Location: The netherlands
|
Posted: Wed Jul 25, 2007 6:43 pm Post subject: |
|
|
16000 is 3E80
and make sure to write 2 bytes
_________________
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 |
|
 |
Icos Grandmaster Cheater
Reputation: 0
Joined: 12 May 2007 Posts: 524
|
Posted: Thu Jul 26, 2007 8:23 am Post subject: |
|
|
| appalsap wrote: | | repeatedly write to that address |
How do you do that? In Win32 I can only think of one method using timer messages.
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Thu Jul 26, 2007 8:33 am Post subject: |
|
|
| Icos wrote: | | appalsap wrote: | | repeatedly write to that address |
How do you do that? In Win32 I can only think of one method using timer messages. |
Create a separate thread and do a loop that constantly writes to that address.
_________________
|
|
| Back to top |
|
 |
Noz3001 I'm a spammer
Reputation: 26
Joined: 29 May 2006 Posts: 6220 Location: /dev/null
|
Posted: Thu Jul 26, 2007 9:38 am Post subject: |
|
|
| Icos wrote: | | appalsap wrote: | | repeatedly write to that address |
How do you do that? In Win32 I can only think of one method using timer messages. |
| Code: | for(;;)
{
WriteProcessMemory(...);
Sleep(10);
} |
|
|
| Back to top |
|
 |
Icos Grandmaster Cheater
Reputation: 0
Joined: 12 May 2007 Posts: 524
|
Posted: Thu Jul 26, 2007 10:36 pm Post subject: |
|
|
| UnLmtD wrote: | | Create a separate thread and do a loop that constantly writes to that address. |
Does this mean that I must learn multithreading before I can do it?
|
|
| Back to top |
|
 |
Noz3001 I'm a spammer
Reputation: 26
Joined: 29 May 2006 Posts: 6220 Location: /dev/null
|
Posted: Fri Jul 27, 2007 4:07 am Post subject: |
|
|
| Icos wrote: | | UnLmtD wrote: | | Create a separate thread and do a loop that constantly writes to that address. |
Does this mean that I must learn multithreading before I can do it? |
Unless you want the program to hang, yes.
|
|
| Back to top |
|
 |
atlantis Advanced Cheater
Reputation: 0
Joined: 16 Jun 2007 Posts: 69
|
Posted: Fri Jul 27, 2007 7:44 am Post subject: |
|
|
I used to have something like doevents for c++ it used peekmessage
seach for it.. works good.
|
|
| Back to top |
|
 |
|