| View previous topic :: View next topic |
| Author |
Message |
hitman.pt How do I cheat?
Reputation: 0
Joined: 09 Feb 2011 Posts: 3
|
Posted: Wed Feb 09, 2011 12:38 pm Post subject: Read MW2 Memory |
|
|
Hi i'm using this table (i found those not downloaded) and i want to read the value of those memory addresses how can i do it in C#? i search and tested a lot of source codes and i can't get it to work :S am i using the right address? PLEASE HELP i don't want to change the value just want to read
The Process is iw4mp.dat (AlterIWNet MW2)
| Description: |
|
 Download |
| Filename: |
COD MW2 Tables.CT |
| Filesize: |
1.4 KB |
| Downloaded: |
668 Time(s) |
|
|
| Back to top |
|
 |
xNef Cheater
Reputation: 0
Joined: 23 Jan 2011 Posts: 25
|
Posted: Wed Feb 09, 2011 1:01 pm Post subject: |
|
|
Use the function:
ReadProcessMemory Function
Search in msdn.microsoft I tried to put the link but I still cant post.
|
|
| Back to top |
|
 |
hitman.pt How do I cheat?
Reputation: 0
Joined: 09 Feb 2011 Posts: 3
|
Posted: Wed Feb 09, 2011 3:47 pm Post subject: |
|
|
In Cheat Engine table i'm getting this address 033C202C
and when i double click in that value a popup window appears with is iw4mp.dat+2FC202C
witch one i should use?
the 033C202C
or iw4mp.dat+2FC202C
or should i convert one of them...
|
|
| Back to top |
|
 |
xNef Cheater
Reputation: 0
Joined: 23 Jan 2011 Posts: 25
|
Posted: Wed Feb 09, 2011 4:22 pm Post subject: |
|
|
033C202C is the adress for the value, (its dynamic adress, so everytime you restart the game changes), iw4mp.dat+2FC202C is the pointer for the value, so everytime you open CE the adress will be update.
If you use adress you have to enter everytime in you program, if you use the pointer, u dont have to do this.
To use the adress you do
| Code: | LPVOID lpAddress = (LPVOID)0x033C202C;
ReadProcessMemory(hProcess, lpAddress, &Buffer, sizeof(Buffer), NULL) |
With pointer I dunno yet.
|
|
| Back to top |
|
 |
hitman.pt How do I cheat?
Reputation: 0
Joined: 09 Feb 2011 Posts: 3
|
Posted: Wed Feb 09, 2011 4:38 pm Post subject: |
|
|
Ok... All working Thanks
|
|
| Back to top |
|
 |
AhMunRa Grandmaster Cheater Supreme
Reputation: 27
Joined: 06 Aug 2010 Posts: 1117
|
Posted: Thu Feb 10, 2011 5:08 pm Post subject: |
|
|
Isn't iw4mp.dat related to the multiplayer portion of COD?
_________________
<Wiccaan> Bah that was supposed to say 'not saying its dead' lol. Fixing >.> |
|
| Back to top |
|
 |
|