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

Question - doevents flush (1 Viewer)

Joined
Oct 15, 2013
RedCents
479¢
Since eqmule unleashed the great mq2 overhaul last month, i notice /doevents flush is behaving differently than it did before. In one of my macros, I check for things like "Your target is too far away" or "You can't hit that form here" and move my toon accordingly. However, since the change, he has been dancing a never-ending jig so I had to disable it. Is there an easy way with /doevents flush to only act once rather than one time for each occurrence of the phrase?
 
What we normally do is in the Event_TooFar is add an /doevents flush TooFar at the very end so the event gets executed once and then all the subsequent TooFar triggered events get cleared.
The following is just an example and would never work in and of itself:

Rich (BB code):
#Event TooFar "Your target is too far away"

sub main
    /doevents
/return

sub Event_TooFar

    /echo Look at me I need to get closer.
    /doevents flush TooFar
/return
 
Question - doevents flush

Users who are viewing this thread

Back
Top