Trinket /use 14 macro help please

[edit] I edited the title because this is most likely a more universal question. However, since I am using this trinket, I wonder if there is anything peculiar about this one [/edit]

Would anyone be able to help me understand why this is not working? I have tried the power of the Googles, but coming up short. Ty!

This macro is supposed to cast Healing Wave, and trigger the macro in slot 14. I am trying to always have the Sipohing Phylactary Shard ability up when I am spamming my large heal. There is a 30 second cooldown on this Trinket, so I was trying to suppress error messages if it is not ready yet.

#showtooltip Healing Wave
/console Sound_EnableErrorSpeech 0
/cast Healing Wave
/use 14
/run C_Timer.After(0, function() SetCVar(“Sound_EnableErrorSpeech”, 1) UIErrorsFrame:Clear() end)

thank you for any assistance.

You might be unable to use the trinket during the cast, and you’ll need to put ‘/use 14’ before ‘/cast Healing Wave’.

1 Like

so… i still can’t get this working…

I tried switching the /use trinket line up above. It all works the first time I use HEALING WAVE in the combat, but never again. That is, it will NEVER again use the trinket. Only one time will it trigger. This seems like a very strange thing. I don’t recall it being difficult to macro in use trinkets.

I realize the script might be a problem, and I copied this from someone else. But… I would really like this to work out.

Blockquote
#showtooltip Healing Wave
/console Sound_EnableErrorSpeech 0
/use 14
/cast Healing Wave
/run C_Timer.After(0, function() SetCVar(“Sound_EnableErrorSpeech”, 1) UIErrorsFrame:Clear() end)

Any other suggestions? Please help!

is off the GCD and I assume doesn’t have a reticle so there’s shouldn’t be any issues with it.

Does the following work consistently?

#showtooltip Healing Wave
/use 14
/cast Healing Wave

Also, I believe that you cannot queue trinkets while GCD locked, even if they’re off the GCD.

1 Like

Thank you for your reply,

I will try the simplified macro tonight. I just find those error sounds ‘that item not ready yet’ and all that annoying. I don’t want to always have them turned off, however.

I will report back

update:

Blockquote
#showtooltip Healing Wave
/use 14
/cast Healing Wave

does not work properly either

What’s the behavior you’re running into? Where if it triggers /use 14 that isn’t not triggering /cast Healing Wave?

I haven’t logged in for a long time, but ty for the reply! The behavior is that it just won’t cast healing wave after the first time. and the trinket is on cooldown of course.

Does the trinket have a cast time or channel? I had a trinket that had a 1.5 sec. channel and it would not let the action happen if it was on cool down. Switched trinkets and macro worked again.