Tracking.mac (A Training program for the tracking skill)

Post your completed (working) macros here. Only for macros using MQ2Data syntax!

Moderator: MacroQuest Developers

dogmai
decaying skeleton
decaying skeleton
Posts: 4
Joined: Sat Oct 18, 2008 3:49 pm

Post by dogmai » Sat Oct 18, 2008 6:08 pm

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

dogmai
decaying skeleton
decaying skeleton
Posts: 4
Joined: Sat Oct 18, 2008 3:49 pm

Post by dogmai » Sat Oct 18, 2008 6:10 pm

Special thanks to bootyjuice whose initial coding for Yet Another Forage Macro provided me with the basis for this macro.