Hi friends. I am trying to macro Chosen of Elune and Celestial alignment into one macro, but I can’t get Chosen of elune to work.
I have tried the following
#showtooltip Incarnation: Chosen of Elune
/cast Incarnation: Chosen of Elune
/cast Celestial Alignment
AND
#showtooltip Celestial Alignment
/castsequence reset=180 Incarnation: Chosen of Elune(Talent, Shapeshift), Celestial Alignment
Both times celestial alignment will go off. Am I doing something wrong?
As somebody else mentioned on wowhead (https://www.wowhead.com/spell=194223/celestial-alignment#comments): Incarnation: Chosen of Elune replaces Celestial Alignment.
You can always use the known conditional
#showtooltip
/use [known:Incarnation: Chosen of Elune]Incarnation: Chosen of Elune;[known:Celestial Alignment]Celestial Alignment
I prefer to use spell ID because of character limitations (and it just looks nicer) and that would look like this.
#showtooltip
/use [known:102560]Incarnation: Chosen of Elune;[known:112071]Celestial Alignment
I use the known conditional all the time.
#showtooltip Celestial Alignment
/cast Lifeblood
/cast berserking
/use Flashfrozen Resin Globule
/cast Celestial Alignment
/cast incarnation
Incarn is on the shapeshift gcd (1.5s) so you need to spam it or itll only do CA. Havign CA second also incurs an extra gcd so always have it first.
Also for pve you probably want 2 seperate binds because Incarn and CA are not used together instantly.
Note that
/cast Incarnation: Chosen of Elune(Talent, Shapeshift)
DOES NOT WORK
/cast Incarnation
DOES WORK
IDK why that is but that fixed it for me.
1 Like
can confirm this is the fix.