View Single Post
07-14-13, 09:06 AM   #3
Rainrider
A Firelord
AddOn Author - Click to view addons
Join Date: Nov 2008
Posts: 454
Originally Posted by ravagernl View Post
You can incorporate Chi wave's cooldown in a macro like this:

#showtooltip
/castsequence reset=15 Chi Wave, Jab, Jab, Jab, Jab, Jab, Jab, Jab, Jab, Jab, Jab
You'd better improve the reset condition because you might get stuck in the jab part as reset=15 means it resets 15 seconds after the last macro use.

Code:
#showtooltip
/castsequence reset=mod:ctrl/15 Chi Wave, Jab, Jab, Jab, Jab, Jab, Jab, Jab, Jab, Jab, Jab
is a nice way as it allows you to check the cooldown of Chi Wave by hitting ctrl. If using a modifier key as a reset condition is not an option because of your bindings, you could also use btn:2 instead of mod:ctrl, but with the disadvantage that a right click on the macro will first cast the spell currently on line and then reset the sequence.
  Reply With Quote