Hello, first post here in the macro forum and didn’t check to see if it’s already been brought up, but I’m looking to try and consolidate my “burst” macros into one macro. I want it to just cast CA/Incarn naturally if Greater Alignment is talented and at my cursor if Orbital Strike is talented.
Basically, it defaults to the normal CA/Incarn cast if Orbital Strike isn’t talented.
It’s been driving me crazy because no matter what I do it won’t default to the non-OS ca spell in the macro and will tell me Orbital strike isn’t learned.
Thank you for any help because it’s driving me crazy.
#showtooltip
/cast [known:390378,@cursor] Orbital Strike; Celestial Alignment
1 Like
You can’t cast orbital strike since its merely a passive that gives celestial alignment a targeting line. You can probably just cast @cursor CA and it will work for both versions, since the default doesn’t take targeting input. This should also work if talented into incarn, as incarn is a spell override for CA.
Only issue I encounted testing this in the proving grounds was the tooltip wouldn’t update between CA and Incarn.
#showtooltip [known:102560] Incarnation: Chosen of Elune; Celestial Alignment
/cast [@cursor] Celestial Alignment
After testing joining and leaving the proving grounds, I was able to replicate a common macro issue where it will pull the wrong spellid until logout. If you enter or leave an instance while talented into orbital strike, you are basically locked into the orbital strike relevant spellid until you logout. Even a simple /cast celestial alignment will be bricked. Reloading ui will not fix this, nor will recreating the macro, you must log out. The only prevention to this seems to be ensuring you have greater alignment talented when joining/leaving instances (maybe any loading screen?).
incarn orbital -> queue/leave -> ca ga -> bricked
incarn ga -> queue/leave -> ca orbital -> fine -> queue/leave -> incarn ga -> bricked
ca orbital -> queue/leave -> incarn ga -> bricked
ca ga -> queue/leave -> incarn orbital -> fine -> queue/leave -> ca ga -> bricked
1 Like