Looking for a macro that will use an engineering item if it’s ready, swap to another one if it’s not.
Currently I have:
#showtooltip
/use 1
/equip Gnomish Mind Control Cap
/equip Goblin Rocket Helmet
Works fine in combat and when I’m intentionally swapping out of combat. The problem with this is that If I’m out of combat and try to use it while out of range, it will swap to the other item even if the cool down on the currently equipped one is ready. Is there someway to check if a cool down is ready and perform an action based on that?
Problem 2: Same sort of thing, but with boots
#showtooltip
/use 8
/equip Gnomish Rocket Boots
/equip Warsong Boots
Trying to use rocket boots if they’re ready an otherwise equip my other pair of boots. Problem lies in trying to use the rocket boots while not in combat. It will use the cooldown and then swap boots immediately, canceling the effect. Can I make the equip action first and make it dependent on whether or not the cooldown for the rocket boots is ready somehow?