single return path for multiple waypoint files

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

single return path for multiple waypoint files

#1 Post by 883Dman »

I run a few alts in Heffner (Earn a Rep). I have 5 different npc's I visit and two different set ups (1 for just dailies and 2 to do dailies and AT all in the same script). That's 10 waypoint files. I do not want to create 10 different return paths for when some tool ganks me. How do I specify the return file to load upon death in the waypoint file? I would only need 1 waypoint file since no matter what wp i'm running I always return to the same spot. I know this is easy and I'm pretty sure I had it once for elf island, but I have not been able to find it again.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: single return path for multiple waypoint files

#2 Post by rock5 »

Code: Select all

rom/bot path:path1 retpath:myreturnpath
Is that what you're after?
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

Re: single return path for multiple waypoint files

#3 Post by 883Dman »

Looks like it. Do I need to put it inside <onload> or just at the beginning of my waypoints?
883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

Re: single return path for multiple waypoint files

#4 Post by 883Dman »

oh i see. it's an argument when loading rombot. Not sure of it will work with auto logout. Might. What I was hoping to find was just an easy way to state the return path inside the wp file. I was trying to use

Code: Select all

  sendMacro("}LoginNextToon=true;a={")
               sendMacro("Logout();"); 
      waitForLoadingScreen();
	   loadPaths("Earn a Rep2 daily", "earn a rep_return.xml");	
	   end
to log out the character so i could load the next and specify the return path to use.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: single return path for multiple waypoint files

#5 Post by rock5 »

That should work. If it doesn't work it might be because of the spaces in the file names. Try renaming them to names without spaces.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
Post Reply