Getting stuck

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
tony_cant_hack_it
Posts: 1
Joined: Sat Apr 10, 2010 9:24 pm

Getting stuck

#1 Post by tony_cant_hack_it »

I got the RoMBot working no problem, works great I love it. I keep getting stuck a lot though. The bot will target something far away and try to run straight there getting stuck on walls, fences, etc. I chanced the combat options to what I thought would fix but, still happening.

Combat distance I set to 50. Isnt that melee range?
Ranged pull changed to false to attempted to get the bot to not go after anything that is not right there next to him

Code: Select all

		<!-- Combat options -->
		<option name="COMBAT_TYPE"        value="melee" />	<!-- leave empty or choose ranged/melee if not using class default -->
		<option name="COMBAT_RANGED_PULL" value="false" /> <!-- only important for melees -->
		<option name="COMBAT_DISTANCE"    value="50" />
		<option name="MAX_FIGHT_TIME"     value="15" />	<!-- Max time without damage before break -->
		<option name="DOT_PERCENT"        value="90" />
		<option name="ANTI_KS"            value="true" />
Chanced wander radius to 50 (this is just for if using wander setting correct?)
Waypoint deviation at 50 (This right here is what I thought was supposed to keep the bot from running off to far?)

Code: Select all

		<!-- Waypoint and movement settings -->
		<option name="WAYPOINTS"		value="Bats15-16.xml" />  <!-- leave empty to show a list -->
		<option name="RETURNPATH"		value="" />
		<option name="PATH_TYPE"		value="waypoints" />	<!-- waypoints | wander -->
		<option name="WANDER_RADIUS"		value="50" />
		<option name="WAYPOINT_DEVIATION"	value="50" />
		<option name="QUICK_TURN" 		value="false" />
How can I get the bot to stop trying to run after far away mobs?
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Getting stuck

#2 Post by rock5 »

COMBAT_DISTANCE is how close you have to move to before attacking.

To limit the range that you attack you need to add a not well documented option called MAX_TARGET_DIST.

Example:

Code: Select all

<option name="MAX_TARGET_DIST"    value="50" />
It would be nice if they added that to the default profile so people would know about it.
  • 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
Administrator
Site Admin
Posts: 5353
Joined: Sat Jan 05, 2008 4:21 pm

Re: Getting stuck

#3 Post by Administrator »

Yeah, you're right. I've added it and it will be in future releases.
Post Reply