Log in

View Full Version : healing



Shox
06-12-2008, 09:35 AM
hi was wondering if anyone can help me, i am trying to create a macro that allows my clones to heal my mains target (focus target) yet if its hostile heal focus

think what im getting stuck on is the checks and help would be much appreciated

Darcla
06-12-2008, 09:59 AM
/cast [target=focustarget, help] Heal
/cast [target=focus, help] Heal


For my healing macros I add one more line



/cast [target=focustargettarget, help] Heal
/cast [target=focustarget, help] Heal
/cast [target=focus,help] Heal


This will check your main's target's target and heal them (basically whoever has aggro), if that fails it will check your focus target and heal (if friendly), finally if that fails it will heal your focus.

Djarid
06-12-2008, 10:30 AM
and to save space shove them all on one line


/cast [target=focustargettarget, help][target=focustarget, help][target=focus,help][] Heal

and just in case, add the empty brackets to allow the spell to do the default behaviour if no options match, this is useful if you want to heal someone who isn't the focus, focustarget or focustargettarget

Darcla
06-12-2008, 10:34 AM
and to save space shove them all on one line


/cast [target=focustargettarget, help][target=focustarget, help][target=focus,help][] Heal

and just in case, add the empty brackets to allow the spell to do the default behaviour if no options match, this is useful if you want to heal someone who isn't the focus, focustarget or focustargettargetI forgot about that little diddy. Good call, i'll be adding that tonight

Shox
06-12-2008, 12:23 PM
thanks for the help i was trying to overcomplicate things :P