Quote:
Originally Posted by high6
|
Its not encrypted, its just miss-a-lined (i can't spell for **** xD). And its also
dynamically allocated so it will keep changing each time. (U may need an input box for the address).
How to find it??... Answer: binary search in CheatEngine (remember to use the pause game when search checkbox, bcuz ur HP will slowly rise and effect ur results).
After you have found it, then you will have an address and an offset... Looks like this:
[23423ABD]^4 (example only)
something like that will mean its located at 23423ABD and ignore the lowests 4 bits
Example of using example in AutoIt:
$HP = BitShift(_ReadMemory(0x23423ABD, $MemId), 4)
The fact that u have to search it each time u run conquer is a bit of a pain. But i think someone else in elitepvpers knows how to fix the address (make it static), something to do with searching for a pointer to some memory which when u move down a bit will give u another pointer to the HP, but i don't know how to get CheatEngine to search for that. (for getting it to find the address of the pointer that holds the dynamically allocated memory which with a certain offset contains the players current HP)