Anyone know how to make an AA ability (for example, a bard's Boastful Bellow) repeat indefinetly without using the /delay command?
If I use /delay it delays the whole macro, I just want it to cast boastful bellow over and over.
Moderator: MacroQuest Developers
Code: Select all
#turbo
Sub Main
/declare BBTimer timer
/varset BBTimer 19s
:Loop
/if n @BBTimer<=0 /call DoBB
/delay 1
/goto :Loop
/return
Sub DoBB
/press 1
/varset BBTimer 19s
/return