How to sequentially cast on your entire party.
Alright, with all the discussions about /castsequence and how it affected DPS, I had a realization about how castsequence performs it's fallthrough. Pardon me if this has been said before, but here's what I found:
If you use the below macro:
Code:
/castsequence [target=player] reset=15 Renew,,,,
/castsequence [target=party1] reset=15 Renew,,,
/castsequence [target=party2] reset=15 Renew,,
/castsequence [target=party3] reset=15 Renew,
/castsequence [target=party4] reset=15 Renew
Your priest will systematically cast Renew on every member of your party (as long as you wait for the GCD between casts).
You can modify the macro however you see fit (to create a buff macro for example) or to add a pet:
Code:
/castsequence [target=player] reset=15 Renew,,,,,
/castsequence [target=party1] reset=15 Renew,,,,
/castsequence [target=party2] reset=15 Renew,,,
/castsequence [target=party2pet] reset=15 Renew,,
/castsequence [target=party3] reset=15 Renew,
/castsequence [target=party4] reset=15 Renew
Anyway, I hope you enjoy the macro :)
RE: How to sequentially cast on your entire party.
as you mentioned "as long as you wait for GCD to finish"
would it perhaps work to add some extra comma's, to prevent an extra keypress from making it to the end of the list.
ie.
Quote:
Originally Posted by 'Ghallo',index.php?page=Thread&postID=160060#post1 60060
Code:
/castsequence [target=player] reset=15 Renew,,,,,,,
/castsequence [target=party1] reset=15 Renew,,,,,,
/castsequence [target=party2] reset=15 Renew,,,,,
/castsequence [target=party3] reset=15 Renew,,,,
/castsequence [target=party4] reset=15 Renew,,,
just brainstorming with you at 2am drunk and tired.