Focus Target, Mouseover or target

Focus Target, Mouseover or target

Dispel / Purify marco help need. Go so far but doesn’t seem to target focus correctly? Anyone advise?

#showtooltip
/stopcasting
/cast [mod:shift, target=focus,nodead,exists,harm] [@mouseover,nodead,exists,harm][nodead,harm] Dispel Magic; [mod:shift, target=focus,nodead,exists,help][@mouseover,nodead,exists][help][]Purify Disease; [@player] Dispel Magic;

Hello Checker,

if both focus conditions do not work you could check if this happens due to the key itself which has its combination with shift already bound to something else.
Also the “exists”-Condition is already included in “harm” or “help”, therefore I would simplify the macro a little bit to make the debugging easier. And the last condition might create an issue as well since the “@player” condition targets the player itself (that means you).

Therefore you might try this instead:

  • Bind the combination “shift”+ on the place of the originial key and then change it back. This ensures that the shift combination is free and ready to be used
  • Try this macro instead (a little bit cleaner without the @player condition for Dispel Magic)
#showtooltip
/stopcasting
/cast [mod:shift, target=focus,nodead,harm] [@mouseover,nodead,harm][nodead,harm] Dispel Magic; [mod:shift, target=focus,nodead,help][@mouseover,nodead,help][help][@player]Purify Disease

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