Need help creating a macro

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

Any ideas what I could add to make it work ? :frowning:

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.

Thank you very much good sir !

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.