• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

TrueShot

ddd000

New member
Joined
Mar 20, 2005
RedCents
autoskills and Spellcast do not work for this disc. Anyone know what the syntax is to only press when refreshed?

I know abilities is something like this:
/if (${Me.AbilityReady[kick]}==1) /doability "kick"

Thank you in advance.
 
Rich (BB code):
/disc <disc name>
Might have to set a variable to define the reuse timer and use an if statement to check against the timer before attempting to activate it.
 
Rich (BB code):
/declare discactive timer outer 0
/declare discreusetimer timer outer 0

Rich (BB code):
/if (!${discreusetimer} && !${discactive} && ${Target.ID}) {
    /disc Trueshot
    /delay 1s
    /varset discactive 2m
    /varset discreusetimer 72m
}

Drop the declares in at the end of your current ones and the if statement somewhere in your attack loop. No guarentees it will work the first time around :D

Shamelessly ripped from RogueHelper Macro.
 
TrueShot

Users who are viewing this thread

Back
Top
Cart