Help with new Balance macro please

I’m looking to make a macro that casts Kindred Spirits if I have to, or Lone/Kindred Empowerment if I already used Spirits. I’m also hoping it uses CA too. I hope these can both be used in the same gcd.

Am I close with this?

#showtooltip Kindred Spirits
/cast Kindred Spirits
/cast Kindred Empowerment
/cast Lone Empowerment
/cast Celestial Alignment

Thank you!

Kindred Spirits is on the GCD so it can only be combined with spells that aren’t.

You can check if an ability is on the GCD by looking them up on WowHead and checking if the GCD is greater than 0.

Okay, cool. So is there a way I could do a /castsequence so that the first press would pop Kindred Spirits and then the second would press Empowerment and CA?

So like…

/castsequence Kindred Spirits
/cast Lone Empowerment
/cast Celestial Alignment

Or would this always pop CA with Kindred Spirits as CA has a “0” according to Wowhead?

You can’t delay CA unless you make it part of the sequence:

#showtooltip
/castsequence Kindred Spirits, Lone Empowerment, Celestial Alignment

Or use a modifier macro instead.

#showtooltip
/cast [mod] Kindred Spirits; Lone Empowerment
/cast [nomod] Celestial Alignment

So hit it with a modifier (ctrl, shift, or alt) to cast Kindred Spirits and without to cast LE + CA.

Thanks so much for your help!!!

1 Like