Page 2 of 2

Posted: Sat Oct 18, 2008 6:08 pm
by dogmai

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

Posted: Sat Oct 18, 2008 6:10 pm
by dogmai
Special thanks to bootyjuice whose initial coding for Yet Another Forage Macro provided me with the basis for this macro.