GM Musicianship, Hiding, and Anatomy

D'Sade

Neophyte
Just restarted on this server after being away for a while and figured I would share the macro I am using for my fresh Provo/Dexxer.

What it does:
  • Uses an instrument (Tambourine by default) every 7 seconds to raise Musicianship until GM'd.
  • Uses Hiding ever 11 seconds until GM'd.
  • Once Hiding is GM'd, it will move on to anatomy, which it will use every 11 seconds on a target you setup until it is GM'd.

Setup:

  • Have a few of your instrument of choice (and change the itemtype on line 11 if it is not a tambourine).
  • On start, it will have you choose a target. Try to choose something that will reliably be in range so it can continue using Anatomy on them (Brit Bank Vendor Spam works great).

The Macro:
//Creating Timers for Use Items and Skill
settimer 'UseItem' 7000
settimer 'UseSkill' 11000
//Creating Alias for Anatomy Target
promptalias 'TargetAnat'
//Macro Beginning, loops as long as you are alive
while not dead 'self' and skill 'Anatomy' < 100
//Check Timer to see if it exceeds 7 seconds and the skill is not GM'D
if timer 'UseItem' > 7000 and skill 'Musicianship' < 100
//Currently set to use a Tambourine, change to whatever you are using if different.
usetype 0xe9d
settimer 'UseItem' 0
endif
//Checks Skill Timer to see if it exceeds 11 seconds and that it is not GM'd
if timer 'UseSkill' > 11000 and skill 'Hiding' < 100
useskill 'hiding'
settimer 'UseSkill' 0
endif
//If Hiding is GM'd, it will start doing Anatomy checks on the chosen Anatomy Target
if timer 'UseSkill' > 11000 and skill 'Hiding' == 100
useskill 'anatomy'
waitingfortarget 1500
target 'TargetAnat'
settimer 'UseSkill' 0
endif
endwhile
 
Top