Modifier mouseover macro

I’m looking for a macro that will cast an ability normally (Voidbolt in this case) but cast another ability (Shadow Word: Pain) on mouseover when I hold shift

Can I make a macro like this? I’ve tried and it either only casts voidbolt and ignores the modifier, or it casts everything on mouseover

It can be a bit hard to know exactly what you are looking for without an example of what you have tried, but this will cast SWP if you are holding down shift (and have a hostile living mouseover target) and cast voidbolt otherwise.

#showtooltip
/cast [@mouseover,harm,nodead,mod:shift]Shadow Word:Pain;Voidbolt
1 Like

Keybinds take priority over macro modifiers; by default SHIFT 1-6 are bound to action page 1-6. You’ll need to unbind them if you want to use them as macro modifiers.

Would also enhance it to the following so SWP works on targets

#showtooltip
/cast [mod:shift,@mouseover,harm,nodead] [mod:shift] Shadow Word:Pain; Voidbolt
1 Like

Thank you!