Log in

View Full Version : Flash Heal, PW; Shield Macro



Feider
03-06-2009, 09:26 AM
I found a few threads addressing something similar but I am having a problem with this macro:
I want it to Flash Heal a target or PW: S it if Ctrl is pressed

/cast [targer=Toon] Flash Heal; [modifier:ctrl] Power Word: Shield

I have tried this in a few different versions but I can't get it to work like I want. (adding [nomodifier] to the Flash Heal, adding [target=Toon] after the semi colon ...)

This:
/cast Flash Heal; [modifier:ctrl] Power Word: Shield
works but not with the target. Can you not add a target like this if you us a modifier? What am I missing?

Thanks a lot.

davedontmind
03-06-2009, 10:19 AM
/cast [mod:ctrl,target=toon] Power Word: Shield; [target=toon] Flash Heal

In English, that macro says:
if ctrl is held down, cast shield on toon,
otherwise, cast flash heal on toon.

You need the 'target=...' bit for both spell clauses if you want that toon to be the target for each spell.

Feider
03-06-2009, 01:07 PM
I think I had tried this variation.
I will copy this over and check it today though.

Thanks.

ElectronDF
03-06-2009, 04:48 PM
The reason it is cause you need to put the not normal condition first. In your way, you always cast flash heal, since there is nothing to stop it from going off. If you put the modifier condition first, it can be skipped and pass onto the heal. So, put your abnormal conditions (limiting) first, then the fall-through ones last. Hope that helps. Good luck.

Feider
03-06-2009, 04:59 PM
/cast [mod:ctrl,target=toon] Power Word: Shield; [target=toon] Flash Heal
Works like a charm.

I had tried the conditional (mod:ctrl) cast first. It must have been just missing the target= in both.

Thanks again guys.