Auto Beg in fight Macro

Have a macro idea but not sure where to start? Ask here.

Moderator: MacroQuest Developers

Whitetrak
decaying skeleton
decaying skeleton
Posts: 1
Joined: Mon May 03, 2004 1:40 pm

Auto Beg in fight Macro

Post by Whitetrak » Mon May 03, 2004 1:54 pm

Hello, it is possible for someone to translate this algo in Macro please ?
The goal is to train automaticaly begging skill while fighting

--------------------------------------
:loop

IF Attack = ON
AND IF Target is not Null
AND IF Target distance < X // (X range distance for Beg)
{
Attack OFF
/doability Beg
Attack ON
sleep Y // (Y is the delay refresh taunt, i dont remember value)
}

goto loop
-----------------------------------------

Thank you for any Help.

User avatar
fearless
Not a Psychic
Posts: 2684
Joined: Wed Mar 10, 2004 3:52 pm

Post by fearless » Mon May 03, 2004 2:33 pm

You might want to take a look at Fuergrissa's stick.mac. It has auto begging and some other things in it.

Code: Select all

   /if (${Target.Distance}<${MaxD}-2) /if (${Me.AbilityReady[begging]}) { 
      /attack off 
      /face fast nolook 
      /delay 1 
      /doability "begging" 
      /if (!${Target.ID}) /goto :main 
      /attack on 
   }