View previous topic :: View next topic |
Author |
Message |
wildwinds How do I cheat?
Reputation: 0
Joined: 09 Jun 2016 Posts: 6
|
Posted: Sun Oct 27, 2019 6:24 am Post subject: Trouble Finding Memory Locations |
|
|
Usually I don't have much trouble finding and maniupulating memory locations in games but there are some games where it seems like it's impossible to find a memory location.
What I'll usually do when I'm having trouble is take a known value from the game, set value type to All, turn off fast scan and run the scan. Then I'll change the value in game and do another scan for the changed value with Next Scan.
Quite often the first scan will return hundreds or thousands of memory locations but then won't find any matches on the changed value.
How do games do this, how do they conceal their memory locations and is there a way around it to find them?
Thanks in advance for any advice.
wildwinds
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3321
|
Posted: Mon Oct 28, 2019 2:51 am Post subject: |
|
|
If the value moves around in the memory, look for pointers instead.
If the value is encrypted, look for changes.
|
|
Back to top |
|
 |
DanyDollaro Master Cheater
Reputation: 3
Joined: 01 Aug 2019 Posts: 334
|
Posted: Tue Oct 29, 2019 9:42 am Post subject: |
|
|
the values in memory are encrypted, I'll give you an example:
let's say in this game you have purchased 10 coins, so you would think "Now I look for the value 10 in the CE scanner" nope, too easy, the value is given by a subtraction of 2 memory regions, so the value 10 is saved in memory as 2 memory regions whose value can be 27 and 17 and if subtracted they give 10, so to have infinite coins find that 27 and move it to 9999 ... but obviously there are infinite ways to encrypt a value.
You can easily find it with a debugger by searching through strings or intermodular calls, but as far as I know, CE does not have these features
|
|
Back to top |
|
 |
|