General question for Macros
Hi there,
I was doing some macros for me but I ended up with some doubts.
One macro I made was:
Quote:
/ac "Windbite"
/ac "Bloodletter"
/ac "Venomous Bite"
But the game was trying to cast them one after another not respecting the queue.
So I ended doing something like:
Quote:
/ac "Windbite"
/wait 2
/ac "Bloodletter"
/wait 1
/ac "Venomous Bite"
Which worked (even though most of times, if I'm moving while shooting, Venomous Bite fails for no reason).
So I was reading all topics that talk about macros and found this post specially nice (since I'm BRD).
Quote:
/micon "Heavy Shot"
/ac "Misery's End" <t>
/ac "Bloodletter" <t>
/ac "Heavy Shot" <t>
/ac "Misery's End" <tt>
/ac "Bloodletter" <tt>
/ac "Heavy Shot" <tt>
Does I really need <t> or is implicit that is my target when using?
And wouldn't this try cast one on top of another, not respecting the GCD also (generating cast errors then)?
Thanks for the replies.
Regards