Hello,
(using GS-E btw)
there is something that is some open questions to me since ages - and i fail to understand it.
- Are Macro Lines skiped while i am on GCD?
Let’s say i have a sequentiel macro like
/cast Heart Strike
/cast Death Strike
/cast Marrowrend
and lets assume i have a GCD of 1 sec and the spells themself have no CD and my Button Spam rate is 0.5 seconds
0.0 Heart Strike
0.5 GCD (no Death Strike)
1.0 Marrowrend
1.5 GCD (no Heart Strike)
2.0 Death Strike
2.5 GCD (no Marrowrend)
3.0 Heart Strike // or back to top
In short words, real cast sequence would be (number in[] are skiped)
1
[2]
3
[1]
2
[3]
Is that true?
What would happen in that case if i use a priority List?
would it be:
1
[1]2
[1]2[3]
resulting in Marrowrend never been casted?
- does a castsequence stop when it hits an ability that is on CD?
assuming i use this sequnce
/castsequence Blood Boil, Marrowrend
would it ever cast marrowrend when Blood Boil is not available?
- Pre / Post Macro
are they casted every buttonclick or only if the Macro sequence is done?
assuming this:
PreMacro = [[
/cast [combat] Vampiric Blood
]],
"/cast Heart Strike",
"/cast Death Strike",
PostMacro = [[
/TargetEnemy [noharm][dead]
/cast Anti-Magic Shell
Would that cast
Vampiric Blod
Heart Strike
Death Strike
Anti-Magic Shell
OR
Vampiric Blood
Heart Strike
Anti-Magic Shell
Vampiric Blood
Death Strike
Anti-Magic Shell
That is all so far - i guess more questions may follow
Thanks for taking your time!!