Looking for Single Target Heal at % life maco

billyg351

New member
Joined
Mar 30, 2021
Messages
7
Reaction score
3
Points
1
Anyone have one? The more basic the better just complete heal at x percent.
 
/if (${Target.PctHPs}<70) /casting "complete heal"

Uses MQ2Casting for the "/casting" command. Can replace it with other things like /cast # can put it in a loop to check hp of your xtargets,etc.
 
AFCleric.mac is pretty basic, and should work. If it doesn't, minor modifications probably to get it so. I haven't used it in a while, so would have to test it - but it's an option.

htw
 
that macro was the bees knees back in the day think its the 1st macro I got introduced to ever
 
Code:
Sub Main

:loop
/if (!${Target.CleanName.Equal[charname]}) /tar charname
/if (${Target.PctHPs}<75) {
/cast 1
/delay 5
      :castloop
      /if (${Me.Casting.ID}) /goto :castloop
}

/if (${Me.PctHPs}<70) {
/tar ${Me}
/delay 3
/cast 1
/delay 5
      :castloop
      /if (${Me.Casting.ID}) /goto :castloop
}
/delay 5

/if (${Me.PctMana}<90 && !${NearestSpawn[npc radius 50].ID} && !${Me.Sitting}) /sit
/goto :loop
/return