#showtooltip word of glory
/cast [@mouseover, help, nodead] Word of Glory
Is the macro I am trying to use it works healing others but now it wont self cast Word of Glory on my self when no one is moused over. How to I make it self cast when no one is moused over?
You can just put in multiple conditions, and it will cast on the first one that is valid. So if you want to cast on a living friendly mouseover target if you have one, else cast on self, you would use
/cast [@mouseover,help,nodead][@player] Word of Glory
2 Likes
Though ancient, my WoG macro is:
#showtooltip
/cast [target=mouseover,exists][] Word of Glory
Never seemed to fail me before. Unsure if I need the double brackets [] still, but I keep them around for the heck of it.
The only thing you could really do with that is change target=mouseover to @mouseover and maybe change exist to help, nodead so it only attempts to cast on living friendlies. Double brackets just means that if there is no mouseover target it will function normally, and you’ll need to click to get it to go off.