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

Usage of Advpath? (1 Viewer)

Joined
Aug 31, 2005
RedCents
80¢
Could someone tell me very concisely what I have to do to begin recording a pathing file? I have seen the list of commands etc, I don't know how to go about doing it. I'd love to add my own pathing to some macro's that I already have, and I figure I'd have time to fill in all the loc gaps in a couple of others
 
D'oh.....I knew I forgot something....Thanks got it working so nicely will post the answer here in case anyone else forgets the lesson of search ...

Record.mac

Rich (BB code):
#event PlayFile "[MQ2] playfile #1#"

#include advpath.inc

Sub Main
  /call InitAPFVars 1 15 20
  /squelch /alias /startrec /echo record
  /squelch /alias /stoprec  /echo stop
  /squelch /alias /playfile /echo playfile
  :Main_Loop
  /call AdvPathPoll
  /delay 5
  /doevents
  /goto :Main_Loop
/return

Sub WaitTilThere
  :LoopTilThere
  /if (${PathingFlag}==1) {
    /call AdvPathPoll
    /delay 1
    /doevents
    /goto :LoopTilThere
  }
/return

Sub Event_PlayFile(string Line, string PathFile)
  /call PlayFunction "${PathFile} 1 nf nopp noz"
  /call WaitTilThere
/return



/startrec name_of_pathfile begins the record process.
/stoprec stops recording
/playfile name_of_saved_pathfile will replay it for you for testing purposes.
 
Usage of Advpath?

Users who are viewing this thread

Back
Top