heyimyuuta Newbie cheater
Reputation: 0
Joined: 14 Sep 2023 Posts: 12
|
Posted: Thu Sep 14, 2023 12:27 am Post subject: Find an unsigned char Data[120] within a Process |
|
|
I am curious if it is possible to search for an "unsigned char Data[120]" within a Process using Cheat Engine.
The array looks like this:
unsigned char Data[120] = {
0x50, 0x97, 0x9D, 0xF3, 0x81, 0x49, 0x10, 0xBC, 0x68, 0x8C, 0xED, 0xFA,
...
0x5D, 0xDE, 0x18, 0x84, 0xE1, 0x49, 0x66, 0xAC, 0xCF, 0xC2, 0x8D, 0xBF
};
I don't have the value within the unsigned char Data, as it has changed.
I am essentially looking to scan for all [120] arrays to locate the correct one.
Any suggestions on how to do this using Cheat Engine?
|
|
ParkourPenguin I post too much
Reputation: 152
Joined: 06 Jul 2014 Posts: 4719
|
Posted: Thu Sep 14, 2023 11:25 am Post subject: |
|
|
| heyimyuuta wrote: | | I am essentially looking to scan for all [120] arrays to locate the correct one. | That's practically impossible. From the perspective of CE, there are no types inherently associated with any particular address. It's all just bytes.
If you're familiar with unions in C, think of every address being a union of every possible type. That's what CE sees.
Scanning "all [120] arrays" would simply result in every address with at least 120 bytes following it.
_________________
I don't know where I'm going, but I'll figure it out when I get there. |
|