This is the macro I use on all of my characters to interrupt.
1. Interrupts on mouseover.
2. Interrupts my main target if I don’t have a mouseover.
#showtooltip
/cast [@mouseover,harm,nodead][]Disrupt
However, I would like to add nochanneling to the macro. Unfortunately this doesn’t work.
#showtooltip
/cast [nochanneling,@mouseover,harm,nodead][]Disrupt
Can anyone help me make this macro? I don’t won’t it to break channeling, I won’t it to interrupt my mouseover target, and I also won’t it to interrupt my target if I have no mouseover.
Thanks
#showtooltip
/stopmacro [channeling]
/cast [@mouseover,harm,nodead] [] Disrupt
1 Like
Thank you very much, I will give this a try.
If you want more DH macros:
In addition to the above:
The reason your macro didn’t work is due to the empty []
conditional. If you wanted to incorporate [nochanneling]
entirely within the spellcast, you can do this:
#showtooltip Disrupt
/cast [@mouseover,harm,nodead,nochanneling][nochanneling]Disrupt
The explicit #showtootlip
is there so the macro doesn’t display a ? while channeling.
3 Likes
Thanks alot Adreaver, I will be testing this one.