| View previous topic :: View next topic |
| Author |
Message |
Unknow_Hero How do I cheat?
Reputation: 0
Joined: 16 Jul 2023 Posts: 3
|
Posted: Sun Jul 16, 2023 8:50 am Post subject: Pointer resulting in a different address that supposed to be |
|
|
Why is a CE's pointer system adding that FFFE0 in front of a first address result?
I was doing the first step to find the static address.
Only the FFFE0 at the beggining of the result doesn't match. The last 11 bytes of the address match perfectly. _________________
new_one |
|
| Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Sun Jul 16, 2023 9:53 am Post subject: |
|
|
| Just for clarification, a byte is represented by two hexadecimal characters. You've set the type to 4-bytes which is at most 8 hexadecimal characters e.g.: 00000000 through to FFFFFFFF. 4-bytes are 32-bit values and 8-bytes are 64-bit values. Change the type from 4-bytes to 8-bytes and see if that remedies your problem. |
|
| Back to top |
|
 |
ParkourPenguin I post too much
Reputation: 152
Joined: 06 Jul 2014 Posts: 4706
|
Posted: Sun Jul 16, 2023 10:57 am Post subject: |
|
|
That's almost certainly not CE's fault. The game probably packs data in with the pointers.
e.g. for Java, use -XX:-UseCompressedOops
PS: a byte is 2 hexadecimal characters, not 1 _________________
I don't know where I'm going, but I'll figure it out when I get there. |
|
| Back to top |
|
 |
Unknow_Hero How do I cheat?
Reputation: 0
Joined: 16 Jul 2023 Posts: 3
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25807 Location: The netherlands
|
Posted: Sun Jul 16, 2023 5:50 pm Post subject: |
|
|
if you're doing this to learn, then the target you've picked is not a good target, as this program prefers to optimizes over memory usage instead of speed.
(it's java or another emulator isn't it ?)
anyhow, execute lua command
| Code: |
setPointerSize(48/8)
| as it's working with a bitsize of 48 bits _________________
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 |
|
 |
Unknow_Hero How do I cheat?
Reputation: 0
Joined: 16 Jul 2023 Posts: 3
|
|
| Back to top |
|
 |
|