How to locate a monster

cicciobello

New member
Messages
4
Points
0
Hi I'm spawning a lot of monsters (many with the same name, so i can't use getmapxy ).

While i spawn them i add their position to arrays i have

Two monsters never have the same position.

Is there a way for me to know the position of the monster that was killed with some script command?

Is there a plugin for this?

 
Last edited by a moderator:
script ?? 

summon them..and attach with an event label ...

OnMobDie:getmapxy( .@map$,.@x,.@y,0 );dispbottom "Map : "+.@map$+","+.@x+","+.@y;end;
you will get the position of your character who killed it... but not the monster since there is no way to trace it.

but..ur result will be differ alot if you're range attack character

maybe you should try to do with with source mod...

 
Back
Top