Code: Select all
|tracker.mac
|
|Simple Tracking Skillup Macro
||||||||||||||||||||
| Main
||||||||||||||||||||
sub Main
/declare maxSkill int outer
/varset maxSkill ${Skill[Tracking].SkillCap}
/echo maxSkill = ${maxSkill}: the skill level you SHOULD see the macro end at.
| Verify that we have the ability to track.
/if (${Me.Skill[Tracking]}==0) {
/echo You cannot track, silly person!
/goto :Exit
}
:Track
/delay 1s
| If we can track then do so.
/if (${Me.AbilityReady[Tracking]}) {
/doability tracking
/delay 2
/notify TrackingWnd DoneButton leftmouseup
}
/goto :Track
:Exit
/return