Trinket Macro Help

Hello

I am trying to make a macro for my on use trinkets and I’m wondering if its possible to achieve what I want. Essentially, I have different sets for resto that use a different on use trinket depending on whether I’m raiding or doing m+ and I’d like to consolidate them both into one macro so it uses just one slot on my action bar, but they each do different things.

For raiding, I use a Soulletting Ruby and in M+ I use the Tuft of Smouldering Plumage. I could just make a mouseover macro for tuft and a separate target macro for the ruby but as my action bars are already quite cluttered and as I equip them in the same slot, I’m wondering if its possible to make a macro that incorporates each of those actions depending on which trinket I have equipped?

So far I’ve tried a macro based on the Penance macro I use on my discipline priest which is:

#showtooltip
/cast [@mouseover, nodead, exists][@target, nodead, exists][]14

but when I tried to use tuft on someone in a key using that macro, it just didn’t work at all, nothing happened.

Is it possible at all to make one macro that does something different depending on which trinket is equipped?

Thanks in advance

You want /use [...] 14, rather than /cast. Cast is for spells, use is for equipment.

Yeah, using equipment slots by number is one of the few times the difference between /use and /cast actually matters.

#showtooltip
/use [@mouseover,exists,nodead] [] 14

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