Page 1 of 1

single return path for multiple waypoint files

Posted: Sat Jul 13, 2013 11:07 pm
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.

Re: single return path for multiple waypoint files

Posted: Sun Jul 14, 2013 12:45 am
by rock5

Code: Select all

rom/bot path:path1 retpath:myreturnpath
Is that what you're after?

Re: single return path for multiple waypoint files

Posted: Sun Jul 14, 2013 12:51 am
by 883Dman
Looks like it. Do I need to put it inside <onload> or just at the beginning of my waypoints?

Re: single return path for multiple waypoint files

Posted: Sun Jul 14, 2013 12:53 am
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.

Re: single return path for multiple waypoint files

Posted: Sun Jul 14, 2013 4:04 am
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.