Question How to auto target a mob?

11/12/2010 21:31 NixIs#1
Hi,

I wonder how to find a list of mobs currently in memory loaded or in other words in my ingame viewrange to make an auto target. I've already found many things to get mob focused by memoryediting without mouseclicks. But I'm a few steps before what I want.

I don't know how to print all mobs in the viewrange area.
If u can help me would be nice.
I am currently working with Cheat Engine.

See PIC what I've already found
11/13/2010 12:08 ZeraPain#2
well as far as i know it isn't possible to make something like that with memory reading / writing. you will have to do this with packets, there you can read out the mob uid from the spawn packet and easily send a packet with the uid to select a mob.
works pretty well but it is a little bit difficult to read out the necessary informations because the spawn opcode and the despawn opcode are the same so you will have to try some methods. also the length of the mob packet isn't always the same ...
btw: you cannot read the exp to the next level from the memory (also the current exp is a qword (8 byte)) :-)
you have to read the level and calculate it by yourself (media.pk2\server_dep\textdata\leveldata.txt). as far as i know the max hp/mp are static addresses so better use them.
11/13/2010 17:09 lesderid#3
Quote:
Originally Posted by ZeraPain View Post
well as far as i know it isn't possible to make something like that with memory reading / writing. you will have to do this with packets, there you can read out the mob uid from the spawn packet and easily send a packet with the uid to select a mob.
works pretty well but it is a little bit difficult to read out the necessary informations because the spawn opcode and the despawn opcode are the same so you will have to try some methods. also the length of the mob packet isn't always the same ...
btw: you cannot read the exp to the next level from the memory (also the current exp is a qword (8 byte)) :-)
you have to read the level and calculate it by yourself (media.pk2\server_dep\textdata\leveldata.txt). as far as i know the max hp/mp are static addresses so better use them.
Actually, EXP to next level is in memory.
11/27/2010 02:02 NixIs#4
Why ever but I can't find EXP next to level and HP of Mobs even when i can see the hpbar... it makes me confused.

Current EXP i can read with 4byte ^^

@ZeraPain Ofc u can even read via memory information about mobs like position and id.

If somebody now hits plz tell me.. i am looking long time for this