 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
ginocapo How do I cheat?
Reputation: 0
Joined: 01 Mar 2012 Posts: 6
|
Posted: Sat Mar 03, 2012 12:47 pm Post subject: [HELP]C++: Please help NOP address |
|
|
Hi, i have those address:
6F286826 90 NOP
6F286827 90 NOP
and i have to NOP them with WriteProcessMemory ...
I already know how to open the process, write memory, but dunno how to NOP an address. I wonder if you help me
Thanks a lot, ginocapo.
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Mar 03, 2012 1:28 pm Post subject: |
|
|
Just write the 0x90 byte to the address. Since you need two bytes use:
| Code: | BYTE btNops = { 0x90, 0x90 };
WriteProcessMemory( hProcess, lpAddress, &btNops, 2, NULL ); |
_________________
- Retired. |
|
| Back to top |
|
 |
|
|
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
|
|