Warlock Macro help

WoTLK Classic, I want to put all my warlock’s drain spells on one key and just change the spell that is cast by holding down a modifier. Here is the macro I am trying but it doesn’t work.

#showtooltip
/cast {mod:shift} Drain Soul
/cast {nomod} Drain Life
/cast {mod: Ctrl} Drain Mana

Can anyone tell me why and what I need to change to make it work?

Thanks!

Wrong brackets.

#showtooltip
/cast [mod:shift] Drain Soul
/cast [nomod] Drain Life
/cast [mod: Ctrl] Drain Mana

This worked for me.

2 Likes

You could also do it inline, if you’d like:

#showtooltip
/cast [mod:ctrl] Drain Mana; [mod:shift] Drain Soul; Drain Life;
1 Like

Tyvm, that works, not sure why my brackets looked weird when i copy/paste, they look normal in game

1 Like

This is what a proper macro looks like:

#showtooltip
/cast [mod: shift] Drain Soul; [mod: ctrl] Drain Mana; Drain Life

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