• 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 --->

Tracking mac (1 Viewer)

cleric

New member
Joined
Jun 9, 2006
RedCents
Can anybody make me a mac for my ranger that will click tracking and then cancel so it can level up my tracking while I sleep or while grouping and am too lazy to do it myself?? :P
 
Rich (BB code):
|track.mac 
|Just Run it
Sub Main
:loop
/if (${Me.AbilityReady[Tracking]}) /doability Tracking
/cleanup
/goto :loop
/return

meh, i put it together in like 5 seconds.. haha


^^ there's the working one
 
I don't know what your /keypress 5 does so I haven't included it in the example below, but you can just include it yourself, just as you have in what you wrote yourself :) I can see you have the idea on how macros works so that isn't hard :)

You can add as many abilities you want like this, if they're ready they will be used. As for the sneak and hide abilities, as you can see I've made it so it stops sneaking and hiding right after doing it, so that it's ready to use at the next Loop.
Rich (BB code):
Sub Main
    :Loop
        | Hide and unhide
        /if (${Me.AbilityReady[Hide]}) {
            /doability Hide
            /delay 1s
            /doability Hide
        }

        | Sneak and unsneak (is that even a word?)
        /if (${Me.AbilityReady[Sneak]}) {
            /doability Sneak
            /delay 1s
            /doability Sneak
        }
    /goto :Loop
/return[/Hide]
[Hide][/hide]
 
Tracking mac

Users who are viewing this thread

Back
Top