View previous topic :: View next topic |
Author |
Message |
Epz Newbie cheater
Reputation: 0
Joined: 01 Jul 2012 Posts: 23
|
Posted: Sun Aug 19, 2012 6:18 am Post subject: C.E with different values than a C++ and Calc.exe |
|
|
// HPP - HP Pointer
DWORD HPP = 0x00B665AC;
[C++] 0x00B665AC -> 11953580 (Wrong)
[Calc.exe] 00B665AC -> 11953580 (Wrong)
[C.E] 00B665AC -> 24571828 (Correct)
What's wrong?  |
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25777 Location: The netherlands
|
Posted: Sun Aug 19, 2012 6:28 am Post subject: |
|
|
Read the 4 byte value at 0x00B665AC and show that as an integer _________________
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 |
|
 |
Epz Newbie cheater
Reputation: 0
Joined: 01 Jul 2012 Posts: 23
|
Posted: Sun Aug 19, 2012 6:34 am Post subject: |
|
|
Can you specify a bit?
Showing them as a integer was exactly same for me currently, but my current code looks like this.
Code: |
// HPP - HP Pointer
DWORD HPP = 0x00B665AC;
// HPP OS - HP Pointer OffSet
DWORD HPP_OS = 0x1C;
DWORD BPointer = (HPP + HPP_OS);
DWORD Result = ReadProcessMemory(GameHandler, (LPVOID)(BPointer), &MemoryResult, sizeof(Result), NULL);
|
Sorry. I'm new this these. |
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25777 Location: The netherlands
|
Posted: Sun Aug 19, 2012 6:42 am Post subject: |
|
|
Read hpp first and add hpp_os to that result
http://forum.cheatengine.org/viewtopic.php?t=422516 _________________
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 |
|
 |
Epz Newbie cheater
Reputation: 0
Joined: 01 Jul 2012 Posts: 23
|
Posted: Sun Aug 19, 2012 8:06 am Post subject: |
|
|
Thank you a lot of this Dark! |
|
Back to top |
|
 |
|