Trinket, Then Cast
ByPops two trinkets (whatever is in the 13th and 14th inventory slots) and finishes with a damage spell. This boosts DPS by reducing the number of keystrokes or clicks necessary for this common cast sequence.
#showtooltip Frostbolt
/use 13
/use 14
/cast Frostbolt
Each action has the potential to fail (when the trinkets are on cooldown or you lose line of sight on your opponent) and produce an error message and sound. Suppressing these errors makes the macro more pleasant to spam. Below is the version with the error suppression.
#showtooltip Frostbolt
/use 13
/use 14
/script UIErrorsFrame:Clear()
/cast Frostbolt
To disable the annoying error sound you get when your trinkets are on cooldown you can use the following macro (credit to Syrloin on Steamwheedle Cartel):
#showtooltip Frostbolt
/run SetCVar(“Sound_EnableSFX”,”0″)
/use 13
/use 14
/run SetCVar(“Sound_EnableSFX”,”1″)
/cast Frostbolt
Related posts: