Page 1 of 1

monk dps macro

Posted: Thu May 06, 2004 9:28 am
by nako
what i am looking for is a macro i can run so when i attack a mob ti will do tiger claw,disarm,beg with out the auto goto mob combad in bounces around to much i ttryede stic and i lose alot dps and like the attack of on enrage to if somebody could help me i know just about nothing anboug wrighting macros

Posted: Fri May 07, 2004 2:36 pm
by bohicaseti
Give this a shot.

Code: Select all

Sub Main

  :Loop 
    /if (${Me.Combat}) {
	/if (${Me.AbilityReady["Tiger Claw"]}>0) /doability "Tiger Claw"
	/if (${Me.AbilityReady["Disarm"]}>0) /doability "Disarm"
	/if (${Me.AbilityReady[begging]}) { 
      /attack off 
      /face fast nolook 
      /delay 1 
      /doability "begging" 
      /if (!${Target.ID}) /return
      /attack on 
   } 
}
    /goto :Loop 
/return