Train.mac Simple but it works!
Posted: Mon Sep 13, 2004 10:49 am
ok this is a little Mac that i made to work up my bards skills while i'm at work it can be Very Eazly changed to work on ANY skills for all melee type class's
Gag
Code: Select all
|Train.mac By Gag
|
| Well this is a shitty little mac that i made to work on my
| My Skills on My Bard its simple and works
| use /mqpause if you use your toon and need to pick something up
| because the /destroy will kill ANY thing on your pointer
#turbo
Sub Main
/echo Traning j00 butt while you AFK!!!!
:loop
/delay 1s
/if (${Me.AbilityReady[Tracking]}) /call Tracking
/if (${Me.AbilityReady[Disarm Traps]}) /call Disarm
/if (${Me.AbilityReady[Sense Traps]}) /call Sense
/if (${Me.AbilityReady[Forage]}) /call Forage
/goto :loop
/return
Sub Tracking
/doability "Tracking"
/delay 5
/keypress esc
/return
Sub Disarm
/doability "Disarm Traps"
/delay 5
/return
Sub Sense
/doability "Sense Traps"
/delay 5
/return
Sub Forage
/doability "Forage"
/delay 5
/Destroy
/return
Gag