AntumDeluge Cheater
Reputation: 0
Joined: 20 Dec 2018 Posts: 48
|
Posted: Wed Apr 17, 2019 1:51 am Post subject: [Solved] Can't Figure Out Value Type for Health |
|
|
I had the same/similar problem with another game. I'm having trouble figuring out the type for a value. When I came across this before, I was told I needed to use "double" type, which solved the problem. But that's not the case with this new game.
An energy value is represented on screen by 28 bars. The value of the address is as follows:
- 4 bytes: 1077673984
- 8 bytes: 1077673984
- float: 2.9375
- double: 5.32441692911269E-315
- array of bytes[10] (hex): 00 00 3C 40 00 00 00 00 00 00
None of these numbers are easily manageable. Am I missing something to make the values better represent the 28 visible bars? Changing between (un)signed doesn't seem to make a difference.
Solved: Sorry, I just realized what my problem is. I needed to set the type to "double" before I did the search. I searched for "4-byte" values, then tried to change them to "double" in the table.
|
|