Can this be done?
- I’m a warlock with soul swap.
- I want to make soul swap, let’s say, button Q.
- I gather my dots with soul swap by pressing button Q.
- I want the macro to make control + Q cast to the focus target.
- I only want control + Q to work for this macro.
- I don’t want to set control as the general key for Focus Cast Key. Just for that one macro.
Is this possible? Could you help me please? I would appreciate it
I’m not a lock so maybe I’m missing something because this seems simple enough:
#showtooltip
/cast [@focus] Soul Swap
And then bind the macro to CTRL+Q.
So pressing “Q” is your normal Soul Swap and then “CTRL+Q” casts it on your focus target.
#showtooltip
/cast [mod:ctrl,@focus,harm,nodead] [] Soul Swap
CTRL casts on a harmful focus, if you have one
DEFAULT casts on your current target
If you also want CTRL to set your focus, if you don’t have one.
Gets tweaked to
#showtooltip
/focus [mod:ctrl,@focus,dead] [mod:ctrl,@focus,noexists]
/clearfocus [@focus,dead] [mod:ctrl,@focus,noexists]
/cast [mod:ctrl,@focus,harm,nodead] [] Soul Swap
1 Like