Log in

View Full Version : Healing macro help



pinotnoir
08-31-2008, 06:11 PM
[target=pinotblanc]

I need to figure out how to add this in my macro so I dont have to use /tar pinotblanc and get it to work with the modifiers I have below. Anyone know how?

/tar pinotblanc
/stopcasting
/cast [mod:shift] Healing Wave; [mod:ctrl] Lesser Healing Wave; Chain Heal

I am trying to avoid having my guys target someone they are focus fire on. I tried putting /cast then [target=pinotblanc] but that erases the modifiers and only does healing wave.

pinotnoir
08-31-2008, 07:56 PM
I am trying to get rid of /tar pinotgrigio so my guys dont lose target. I have 1 button for each toon that i bound to heal them. Would it be better to put cast in there a bunch of times and then add [target-pinotblanc] after cast?

Toned
08-31-2008, 09:08 PM
/cast [target=lawlshawk] lesser healing wave

pinotnoir
08-31-2008, 09:18 PM
WOOT! Got it thanks!

/cast [mod:ctrl,target=pinotblanc] lesser healing wave
/cast [mod:shift,target=pinotblanc] healing wave
/cast [target=pinotblanc] chain heal

This lets me heal pinotblanc with one macro. And my guys wont lose target while healing.

Fizzler
08-31-2008, 11:49 PM
you can get pretty creative with macro's its fun to tweak them.

This is my staple macro format for healing.

#show Lesser Healing Wave
/click [noexists][dead][noharm] ActionButton12
/cast [target=targettarget,help,nodead] [target=target,help,nodead] [target=player] Lesser Healing Wave

In ActionButton12 I have an assist Macro. Most of my spells will start out this way.

[noexists][dead][noharm] basically the Actionbutton will trigger if I do not have a target, my target is dead. I wonder is noexists necessary if i have noharm... will have to look that up.
Ok the heal will heal the Targets target which is whomever has aggro as long as they can benefit from the spell [help] and not dead. Or it will heal the target if they can benefit from the spell and not dead and last but not least if the first two do not work it will just heal the healer.

wowwiki has some great info on conditionals. http://www.wowwiki.com/Making_a_macro

cheeseprophet
09-03-2008, 02:51 PM
you can get pretty creative with macro's its fun to tweak them.

This is my staple macro format for healing.

#show Lesser Healing Wave
/click [noexists][dead][noharm] ActionButton12
/cast [target=targettarget,help,nodead] [target=target,help,nodead] [target=player] Lesser Healing Wave

In ActionButton12 I have an assist Macro. Most of my spells will start out this way.

[noexists][dead][noharm] basically the Actionbutton will trigger if I do not have a target, my target is dead. I wonder is noexists necessary if i have noharm... will have to look that up.
Ok the heal will heal the Targets target which is whomever has aggro as long as they can benefit from the spell [help] and not dead. Or it will heal the target if they can benefit from the spell and not dead and last but not least if the first two do not work it will just heal the healer.

wowwiki has some great info on conditionals. http://www.wowwiki.com/Making_a_macroBetter, shorter
add

#showtooltip Lesser Healing Wave
in the beginning :)