View Single Post
04-13-15, 04:02 PM   #2
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
If you mean you want the macro to do "cast A, cast B, cast C, click X" in that sequence, then no, it's not possible. You can't combine different macro commands, and there's no conditional for "is the cast sequence on the previous line on the last part of the sequence?". Your only options are to either /click every time you activate the macro:

Code:
/castsequence A, B, C
/click X
...or use a modifier key to control when the /click happens:

Code:
/castsequence [nomod] A, B, C
/click [mod:shift] X
However, it looks like you're trying to /click an action button -- what does that button do? There may be some other option besides /click that would work here.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote