Addresses

03/21/2006 16:24 NoSx#1
Hi. Ive been reading elitepvpers for quite long but never posted anything. So here comes my first post:

Im making some client side hack program (basically just playing with memory). But im a bit stuck. I cant find mp value. Im using TSearch to locate but cant find. Tried searching 2 bytes, 4 bytes, 8bytes, even float and double but it didnt help. I already found many addresses for many things: name, spouse, money, hp (its not dynamic), experience but not for mp. Anyone could help?
03/21/2006 17:00 unknownone#2
MP is allocated dynamically, You need to fetch the pointer in the function that allocates it

Oh, and HP IS dynamic.

Your maximum MP and HP can be read from a fixed offset, but your current MP/HP values are dynamic
03/22/2006 00:07 Hojo#3
Quote:
Originally posted by unknownone@Mar 21 2006, 17:00
MP is allocated dynamically, You need to fetch the pointer in the function that allocates it

Oh, and HP IS dynamic.

Your maximum MP and HP can be read from a fixed offset, but your current MP/HP values are dynamic
what he said :)
03/22/2006 10:53 NoSx#4
Current hp is not dynamic. I really found fixed address for that: $00F1B528. The problem with current mp is that i cant find its value with TSearch... Thats the way i use: I check how much mp my char has then search for that value (usually finds 100-500 addresses). Then i use some mana and search for changed values but after doing it either no addresses left or no values show my current mp (i hope u understand what i mean).