View Single Post
03-20-11, 06:46 AM   #5
avngr
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Nov 2005
Posts: 14
Not sure if you really want to use the buttons directly for some reason I'm not aware of, but you could just macro those abilities directly and skip worrying about the buttons.

something like:

#showtooltip
/castsequence [@focus,help][help][@pet,exists] Misdirection, Hunter's Mark
/petattack


I'm not sure of your exact Misdirection macro obviously so that's just an example, but I think /castsequence is the key to what you're trying to do. That will cast the first ability on your first press (MD) and the second ability on your second press (HM). I suppose the pet will get the attack command twice this way, but that shouldn't be a problem. The icon/tooltip will also change to whichever ability you're on in the queue.

You could also add a "reset=5" or something in there so that if you for some reason abort before the second press the sequence will reset after 5 seconds (or whatever time you choose).

I haven't tested exactly what I've posted, but I use /castsequence regularly, for example this 2 press escape macro:

#showtooltip
/castsequence reset=5 Wing Clip, Disengage

Good Luck!
  Reply With Quote