This is for my DH, I want him to use both Metamorphosis and Pocket Fel Spreader which are both targeted abilities. My issue is that the macro I have only use the Meta and not the toy unless Meta is on cooldown.
Here is my macro
#showtooltip
/cast [@cursor] Metamorphosis
/yell You are not prepared !
/cast [@cursor] Pocket Fel
You can’t chain abilities which require cursor targeting.
I think the best alternative would be to use a modifier key such as shift, ctrl, or alt for the toy. Like this:
/cast [nomod,@cursor] Metamorphosis
/cast [mod:shift,@cursor] Pocket Fel Spreader
/stopmacro [mod:shift]
/yell You are not prepared!
The /stopmacro then /yell is because /yell doesn’t accept conditionals. by putting a /stopmacro [mod:shift] before it, i basically tell the macro to stop right there if shift is held down, if shift isn’t held down then to do the /yell.