Pugs
Member
- Joined
- Feb 6, 2005
- RedCents
- 654¢
This is a little macro i made to to train my monks skills up to bar after a pl. It must be used in a nonaggro zone like the nexus or PoK baz. where ever.
Rich (BB code):
|Monk.mac By Pugs
|
| Well this is a shitty little mac that i made to work on my
| My Skills on My monk its simple and works
Sub Main
/echo Traning You
:loop
/delay 2s
/if (${Me.AbilityReady[Feign Death]}) /call FD
/if (${Me.AbilityReady[Intimidation]}) /call Intimidation
/if (${Me.AbilityReady[Dragon Punch]}) /call Dragon
/if (${Me.AbilityReady[Mend]}) /call Mend
/goto :loop
/return
Sub FD
/doability "Feign Death"
/delay 20
/sit
/call CheckGM
/return
Sub Intimidation
/doability "Intimidation"
/delay 5
/echo Intimidation
/return
Sub Dragon
/doability "Dragon Punch"
/echo Dragon Punch
/delay 5
/return
Sub Mend
/doability Mend
/echo mend
/delay 5
/return
Sub CheckGM
/echo checking for gms
/if (${Bool[${Spawn[gm].ID}]}) {
/echo A GM or Guide has been detected in the zone
/dely 5s
/exit
}
/return



