Focus Cast Key for just one button?

Can this be done?

  1. I’m a warlock with soul swap.
  2. I want to make soul swap, let’s say, button Q.
  3. I gather my dots with soul swap by pressing button Q.
  4. I want the macro to make control + Q cast to the focus target.
  5. I only want control + Q to work for this macro.
  6. 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 :slight_smile:

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