First all You need the ID of Player that you want keep X distance
ID of EK will DISPLAY ON PLAYER SCREEN
or
for second option is necesary to run macro in debug mode in order to get PLAYER ID
Ex: my EKID
Next: you need to put this in your second char, example i put on my druid:
Example:
and the druid will keep 5 sqm distance from EK
for me was very usefull to hunt MC, EK & HEALER
Code:
4500 {ID EK} IDEK:=Creature.Self() HUD.Display(!IDEK!)
ID of EK will DISPLAY ON PLAYER SCREEN
or
Code:
Creature.Self()
for second option is necesary to run macro in debug mode in order to get PLAYER ID
Ex: my EKID
PHP Code:
Start-Of-Macro
Creature.Self() returned 47524498
!IDEK! has been set to 47524498
HUD.Display(!IDEK!) returned 1
End-Of-Macro
Next: you need to put this in your second char, example i put on my druid:
Code:
1000 {KeepDistance of EK} Creature.KeepDistance(YOUR EK ID, SQM)
Example:
Code:
1000 {KeepDistance of EK} Creature.KeepDistance(47524498, 5)
for me was very usefull to hunt MC, EK & HEALER