With the new talent trees a lot of macros are not working right now, and some will be obsolete. However I can think of a couple of examples where they will still be needed.
Trying to save macro space I have been using the [talent:x/x] macros alot for selection spells. Using these now doesnt work or doesnt show the tooltip. A good example is the macro below, where for PS I want “@mouseover” and for VT I want “@cursor”.
#showtooltip
/use [talent:4/2,@mouseover,harm][talent:4/2]Phantom Singularity
/use [talent:4/3,@cursor]Vile Taint
#showtooltip
/use [talent:4/2,@mouseover,harm][talent:4/2]Phantom Singularity; [talent:4/3,@cursor]Vile Taint
(Neither works)
Is there a way to fix these yet, or does it all depend on blizzard fixing things on their end first?
Much love, Hexxagon.
We’re still waiting for blizzard to provide us with new talent
condition functionality.
There’s a slightly janky workaround you can do using the following macro template:
Dynamic GetSpellInfo Macro
Useful for things like Mercenary racials and PVP Talents where there’s no talent:row/col
condition to determine if a spell is known or not.
#showtooltip
/cast SPELL1
/cast SPELL2
/cast SPELL3
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"SPELL1" or G"SPELL2" or G"SPELL3")
Self Cast Key Bug Season of Discovery Rune Placeholder Spells General Macro Templates Ping Macro Universal Mount Macro Known Macro Helpful Mouseover Macro Harmful Mouseover Macro Reaction Neutral Mouseover Macro Help/Harm Macro Multi-modifier...
Reading time: 15 mins 🕑
Likes: 90 ❤
#showtooltip
/cast [@mouseover,harm,nodead] [] Phantom Singularity
/cast [@cursor] Vile Taint
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Phantom Singularity" or G"Vile Taint")
1 Like
Alright! Ill check it out. Thanks for the help!
system
(system)
closed
November 29, 2022, 7:24pm
4
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.