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

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - creating a path to run and do things?

If you actually want to write your own macro which uses MQ2AdvPath then this Sub might come in handy

Rich (BB code):
Sub Wait4Play

	:PlayLoop
	/if (${AdvPath.Playing}) /goto :PlayLoop

/return

So you your script would look like this:

Rich (BB code):
Sub Main
  /plugin MQ2AdvPath

  :Loop
  /play A2B
  /call Wait4Play
  /call yourkillordowhateverroutine
  /play B2C
  /call Wait4Play
  /call yourkillordowhateverroutine
  /play C2A
  /call Wait4Play
  /call whateveryoudoatA
  /goto :Loop
  
/return

Only problem with MQ2AdvPath is that it will not recover very well in laggy conditions and you can run into a dead end so you might need to add some additional logic. Otherwise it is an awesome plugin.
 
Last edited:
Question - creating a path to run and do things?

Users who are viewing this thread

Back
Top
Cart