Hey all - so I’m trying to create a mouseover for Nature’s Cure (resto druid). I have them for all my heal spells, so I just copied the macro, and replaced the spell. However, I cannot get it to cast, nor does the tooltip show the icon for nature’s cure. Is there some kind of formatting that needs to be done with a spell that has punctuation?
#showtooltip
/cast [@mouseover,help,nodead] Nature’s Cure, Nature’s Cure
Thanks in advance for the help
I just looked at my macro, and while it’s a bit different in structure, there’s nothing weird with the “Nature’s Cure” part.
I don’t know if it’s in your original macro, but the comma should be a semicolon
#showtooltip
/cast [@mouseover,help,nodead] Nature's Cure; Nature's Cure
You could also get the same effect by using:
#showtooltip
/cast [@mouseover,help,nodead][]Nature's Cure
You can also get fancy and set up a macro that will work in all specs:
#showtooltip
/cast [@mouseover,help,nodead,spec:4][spec:4]Nature's Cure;[@mouseover,help,nodead][]Remove Corruption
3 Likes
Fancied up even more:
#showtooltip
/cast [@mouseover,help,dead][help,dead]Rebirth;[spec:4,@mouseover,help,nodead]Nature's Cure;[@mouseover,help,nodead]Remove Corruption;[@mouseover,harm,nodead][harm]Soothe;[spec:4]Nature's Cure;Remove Corruption
Rebirth on dead allies
Sooth on enemies
Dispel on allies
3 Likes
yep , that was it ‘;’ rather than the ‘,’
simple enough - thanks!!
Elvenbane:
Fancied up even more […]
very fancy
definitely will have to try that one out.
thanks all!!
1 Like
Oh BTW Udiza, because you copy/pasted the OP’s macro you’ve got smart quotes all through your code.
2 Likes
Man, the font the forum uses on my computer makes smart quotes vs strait hard to see. I think I’ve cleaned it up.
I have all my toons set up with the help/harm macro when applicable since there’s so many of these:
shaman- cleanse/purge
mage- remove curse/spellsteal
Druid- natures cure/sooth
One other idea is to have similar things for heal/harm spells on healers. My rejuv button casts moonfire when i mouse over an enemy, lifebloom is sunfire, etc. Less buttons on my interface.
1 Like