Mob/enemy coordinates

07/18/2010 00:32 Raccon#1
Hello,

is there some way we can get Mobs or enemy coordinates?

im trying to find it, but i dont do any idea how to...
is these coords saved on a memory addres ?
07/18/2010 05:11 pro4never#2
Quote:
Originally Posted by Raccon View Post
Hello,

is there some way we can get Mobs or enemy coordinates?

im trying to find it, but i dont do any idea how to...
is these coords saved on a memory addres ?

Pull the data from the entity spawn packet using either a proxy or a meory based cient hook that reads post decryted packets. If you like there is a sticky on proxy creation in the discussion forum.
07/18/2010 06:22 IAmHawtness#3
Just read the data from the rolelist. It'll probably be the easiest for you.
07/18/2010 20:40 Raccon#4
Quote:
Originally Posted by pro4never View Post
Pull the data from the entity spawn packet using either a proxy or a meory based cient hook that reads post decryted packets. If you like there is a sticky on proxy creation in the discussion forum.
oh thanks

im trying to do that second way, memory based...
but im completely lost

i already did something simple with windows api but its not that useful

Quote:
Originally Posted by IAmHawtness View Post
Just read the data from the rolelist. It'll probably be the easiest for you.
that sounds great, but im to much noob to do it...
how can i find it?
07/23/2010 22:16 trash#5
for the rolelist... prolly out dated and not the best method but used to work for me
in olly search for:
Code:
PUSH EBX
LEA ECX,DWORD PTR DS:[EBX+10]
CTRL+L while watching for the order call dec test then set a bp on the push ebx.
Code:
0057E846   .  53            PUSH EBX
0057E847   .  8D4B 10       LEA ECX,DWORD PTR DS:[EBX+10]
0057E84A   .  E8 63C30300   CALL Conquer.005BABB2
0057E84F   .  48            DEC EAX
0057E850   .  85C0          TEST EAX,EAX
0057E852   .  8945 F0       MOV DWORD PTR SS:[EBP-10],EAX
0057E855   .  0F8C 41010000 JL Conquer.0057E99C
0057E85B   >  8BF3          MOV ESI,EBX
0057E85D   .  8D7D C8       LEA EDI,DWORD PTR SS:[EBP-38]
martin will probly come and say its all wrong and tell you the right way to go about it :P
07/23/2010 22:24 translucent50#6
so if anyone knows of one that is working? please let me in on it! thank again:handsdown:!