Can I get waypoint files to change my profile.xml on load?

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Xanatos
Posts: 2
Joined: Sat Feb 12, 2011 4:40 am

Can I get waypoint files to change my profile.xml on load?

#1 Post by Xanatos »

Hi Guys, first time poster here.

I been using RoMBot mainly to help me level and keep up with a friend when I'm out or sleeping or just need to be away from the computer a bit. Anyways I have 2 large waypoints but a narrow path that I need to connect them. When I'm on the large waypoints I want the bot to be aggressive but when I'm on the narrow back and forth waypoint I need the bot to be pretty much passive. So is there any code like:

Code: Select all

changeProfileOption("TARGET_LEVELDIF_ABOVE", -1);
         changeProfileOption("TARGET_LEVELDIF_BELOW", -1);
That I can use to change the:

Code: Select all

<option name="TARGET_LEVELDIF_ABOVE" value="3" />
         <option name="TARGET_LEVELDIF_BELOW" value="10" />
I'm the profile.xml then change it back when I'm on my normal harvesting/leveling waypoints?
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Can I get waypoint files to change my profile.xml on loa

#2 Post by lisa »

Easiest way to be non-agressive in a waypoint file is to have

Code: Select all

<waypoints type="TRAVEL" >
This code at the start of the waypoint file will make the bot only defend itself. This means it will just keep walking until something attacks it, then the bot will kill it.

You can also change your profile options with code in the WP aswell.
example

Code: Select all

<waypoints type="TRAVEL" >

	<onLoad><![CDATA[
 
		changeProfileOption("MAX_TARGET_DIST", 150);
		changeProfileOption("WAYPOINT_DEVIATION", 0);


	]]></onLoad>
	<!-- # 30 --><waypoint x="-1444" z="-5387" y="9">player:mount();	</waypoint>
	<!-- # 31 --><waypoint x="-1692" z="-5302" y="61">player:mount();	</waypoint>
	<!-- # 32 --><waypoint x="-1510" z="-5239" y="13">player:mount();	</waypoint>
</waypoints>
the changeProfileOptions(); points to the tags within the profile itself.
So <profile> <options>
or changeProfileFriends();
for <profile> <friends>

Hope this helps
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Xanatos
Posts: 2
Joined: Sat Feb 12, 2011 4:40 am

Re: Can I get waypoint files to change my profile.xml on loa

#3 Post by Xanatos »

Perfect, thank you Lisa. That was just what I was looking for.
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Can I get waypoint files to change my profile.xml on loa

#4 Post by lisa »

That's ok, I can see why you posted in this section as the title says ,waypoint scripts, I think the title is meant to be for people to share their files with others as opposed to questions.
I think the questions are better off in the Runes of Magic section =)
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Can I get waypoint files to change my profile.xml on loa

#5 Post by rock5 »

Except I believe it should be 'type="RUN"'. "TRAVEL" wont stop if you have aggro. I believe the wiki still has them back to front.

Edit: Ok, I fixed the wiki. It is now correct.
  • 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
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Can I get waypoint files to change my profile.xml on loa

#6 Post by lisa »

I actually always get those 2 mixed up, the logic in the names just isn't there for me.

So TRAVEL doesn't fight back and RUN does fight back.
I'd probably have gone with DEFEND instead of RUN.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Post Reply