Page 1 of 1

Protecting Healer

Posted: 31 Mar 2013, 00:11
by haean
hey my Fighter/Tanker will never kill the mobs that are attacking the healer that is autofollowing him eventually leading to the healer dieing can someone please tell me how to fix that

Re: Protecting Healer

Posted: 02 Apr 2013, 07:22
by Raider

Re: Protecting Healer

Posted: 14 May 2013, 11:41
by twist3d
Add this to your macros.txt

Code: Select all

automacro statusRecover {
   run-once 1
   class Priest
   console /Monster (.*) \((\d+)\) attacks you /i
   call statusRecoverynow
   timeout 8
}
macro statusRecoverynow {
   $m = $.lastMatch2
   do sm 72 $m
   $mymap = $.map
   $lockmap = @config (lockMap)
   $master = @config (followTarget)
   $mon = $.lastMatch2
   if ($mymap != $lockmap) goto stop
   do pm "$master" a $mon
   :stop
	stop
   release statusRecover
}