Warrior Attack Macro w/Auto kick and taunt.
Posted: Mon Jun 14, 2004 2:54 pm
I've been playing a warrior for a long time now - and constantly bashing the taunt and kick button is starting to annoy me and instill a fear of carpal tunnel syndrom and arthritus.
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:
Any and all help is most appreciated! Thanks again guys.[/code]
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