I was wondering if there is a way to first check if my trinkets are off cooldown and THEN use /use them.
Here is what the problem is.
My macros look BASICALLY something like this.
Code:
/cast <Spell>
/use 13
/use 14
Problem with this method is when my trinkets are on Cooldown I get bombarded with Item is Not Ready Yet and Spell Is Not Ready Yet error messages, which significantly reduce my casting speed, which is a BIG problem in PVP. You know every failed spell or trinket use trigger a GCD of like 0.5 or more.
I need some way to check if the trinkets are ready before executing the /use command and if they are still on Cooldown, the macro should skip the /use 13, 14 part and proceed directly with the spell-cast.
Here is how I imagine it, USING PSEUDO-CODE to just represent my idea.
Code:
Check_if_Trinkets_are_Ready{
if yes, /use 13, 14;
}
/cast <Spells>
Anyone got any idea how to resolve this ? I used the Search function but didn't find anything relevant to my problem.