Hey macro experts, quick question. I want to have a macro that does the standard single button for swaping between 3 active ability talents on a single row. That isn’t too hard to find but can I modify this macro so that just one of the 3 abilities can also be used as a mouseover macro to hostile targets / just uses it on my current target if I’m not moused over anything?
[this, and this]
[this] [or this]
Which talent are you trying to setup?
Im trying to make a single button macro for a druid CC row for balance (row 4). The 3 abilites are mighty bash, mass entanglement, and typhoon. The rub is that I want bash and mass to be mouseover abilites (typhoon doesnt work that way). Is there a way to smash these mouseovermacros together with the single button talent row macro?
It actually doesn’t matter that Typhoon isn’t a mouseoverable cast. So long as you provide a fallback to default it’ll work. So you can simply do the following:
#showtooltip
/cast [@mouseover,harm,nodead] [] Nature's Control
That said, the talent
condition also doesn’t require that you cast the talent you’re testing against so you can expand it out to this if you want:
#showtooltip
/cast [notalent:4/3,@mouseover,harm,nodead] [] Nature's Control
Functionally they should both work the same.
Wow this works great! Thank you mate so much for your time. I do have one last minor question, how did you find this name for this talent tree row? I didn’t know the rows had general names.
Do you mean the notalent:4/3 part?
It’s saying “doesn’t have the talent in the 4th row, 3rd column”. As long as everything in the brackets is true, it’ll fire off.
IIRC, the empty brackets says if the first brackets don’t fire, just do this as default.
There’s only a couple of them left. They were more common back in MoP.
Do an extended search of spells on wowhead for “talented” for the full list.