Basically want I want is a macro that when i activate it, it works just like the normal autoattack, except that it hits taunt and kick once or twice a second - it must also have the ability to successfully turn off when the mob is dead or when i hit the same button a second time - its going to be a hot key.
Anyway, this was my unsuccessful crack at it:
Code: Select all
Sub Main
/attack on
/Goto :loop
:loop
/delay 1s
/Doability Taunt
/Doability Kick
/if <Keypress 1> {
/attack off
/macro stop
}
/if (!${Target.ID}) {
/attack off
/return
} else {
/goto :loop
}
/return
/return
