Mouseover heal/harm macro

Hello, i’m a druid and i would like to know if the following macro is possible: cast rejuvenation on mouseover, if no target is on mouse then cast rejuvenation on self, if enemy is targeted (not mouseover) cast moonfire. All I have so far is:
#showtooltip
/use [@mouseover,help][@player] Rejuvenation
but I can’t get the enemy part to work

#showtooltip
/cast [@target, harm] Moonfire
/cast [@mouseover, help][@player] Rejuvenation

Should do everything you asked for. Can also put it in one cast-statement, but I find this to be a little more clear.

1 Like

With double mouseover

#showtooltip
/cast [mod:alt,@player] [@mouseover,help,nodead] Rejuvenation; [@mouseover,harm,nodead] [harm] Moonfire; Rejuvenation

Friendly mouseover only

#showtooltip
/cast [mod:alt,@player] [@mouseover,help,nodead] Rejuvenation; [harm] Moonfire; Rejuvenation
6 Likes

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