• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

help writing a macro (1 Viewer)

king007

New member
Joined
Jul 22, 2006
RedCents
Ok this is what i need if anyone will be so kind. I need a simle skills macro that can push a skills hotbutton till the skill reaches the max. and looks for someone entering zone then camps. example I have a warrior and trying to max out his taunt skill but hate to sit at the keybord and push the number 2 over and over again. can anyone point me in the right direction?

And yes I did search both this forum and the mq2forum for a simular program but so far could not find it. All that code confuses me thanks for any help :confused:
 
Tested and working :)

Rich (BB code):
#chat tell
#event lang "tells you"

Sub Main

:Loop
/doevents
/call CheckGM
/if (${Me.AbilityReady["Taunt"]}) {
     /doability "Taunt"
   } 

/goto :Loop
/return

Sub Event_Chat
  /echo Tell recieved, stopping for 5 minutes.
  /delay 300s
/return

Sub Event_Lang
  /echo Tell recieved, stopping for 5 minutes.
  /delay 300s
/return

Sub CheckGM
    :GMCheck
    /if (${Bool[${Spawn[gm].ID}]}) {
       /echo GM in zone. Camping!
       /camp desktop
    }
/return
 
Make sure you put your taunt key on your ability page and then make sure you have a target to taunt and then just /mac taunt or whatever you named it
 
help writing a macro

Users who are viewing this thread

Back
Top