View previous topic :: View next topic |
Author |
Message |
DLord How do I cheat?
Reputation: 0
Joined: 10 Oct 2007 Posts: 3
|
Posted: Wed Oct 10, 2007 2:10 am Post subject: [Help]Combine Pointer and Hex |
|
|
Ok, How to combine pointer and hex together so it point to actual address.
Example
Actual address is 004E1AB0
Address of pointer is 0319F1A0 and Offset(Hex) is BB0 point to 004E1AB0
After adding both using hex calculator, it becomes 319FD50
But when i tried adding the address manually, i get 0 value. It should point to 004E1AB0 and get the value. Thanks in advance to anyone that can help.
Last edited by DLord on Wed Oct 10, 2007 11:10 am; edited 1 time in total |
|
Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Wed Oct 10, 2007 3:42 am Post subject: |
|
|
Because the address 004E1AB0 has the value 0 and the address pointed by 004E1AB0+BB0 (319FD50) has a diffrent value..?
004E1AB0+BB0 will show 319FD50 value because its a pointer, but 004E1AB0 will show its own value.
|
|
Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Wed Oct 10, 2007 9:34 am Post subject: |
|
|
Symbol wrote: |
004E1AB0+BB0 will show 319FD50 value because its a pointer, but 004E1AB0 will show its own value. |
No, a pointer holds the same value as the dynamic address.
|
|
Back to top |
|
 |
DLord How do I cheat?
Reputation: 0
Joined: 10 Oct 2007 Posts: 3
|
Posted: Wed Oct 10, 2007 11:08 am Post subject: |
|
|
Is there anyway to make it one address so no need to have the hex separate.
|
|
Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Wed Oct 10, 2007 12:07 pm Post subject: |
|
|
A pointer is the address.
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Wed Oct 10, 2007 12:12 pm Post subject: Re: [Help]Combine Pointer and Hex |
|
|
If you found the pointer using the pointerscan inside CE, just double click the found pointer to add it to your table. To add it manually, click the Add Address Manually button then check the Pointer box, and add your address and offset there:
|
|
Back to top |
|
 |
|