Change the normal turn to turn while running

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
eragon2450
Posts: 9
Joined: Tue Jul 26, 2011 2:34 pm

Change the normal turn to turn while running

#1 Post by eragon2450 »

I don't know lua so i was wondering what the code is for "and". I was hoping that in the settings file i could make it so the bot will turn while running so its looks more natural. Haven't found threads on this so I don't know whether you can do it or not.
Something like this:
ROTATE_LEFT = {key = _G.key.VK_Q "code for and" _G.key.VK_W, modifier = nil}
Let me know if it can work or if there is another way, Thanks
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Change the normal turn to turn while running

#2 Post by lisa »

there is a profile option for this

settings.profile.options.WP_NO_STOP

So in your profile you can do

Code: Select all

<option name="WP_NO_STOP" 	value="true" />
Mind you by default it already does this.
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
eragon2450
Posts: 9
Joined: Tue Jul 26, 2011 2:34 pm

Re: Change the normal turn to turn while running

#3 Post by eragon2450 »

first things first....that was fast lol, thanks for the quick reply. But right now the bot runs through the way point doing a quick turn, I was hoping it could do a slow turn while running, is that possible?

I was thinking, if turning was two functions, turn and move, that the slow curve turn may work, since it look more human and all.
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Change the normal turn to turn while running

#4 Post by lisa »

in your profile it will have

Code: Select all

		<option name="QUICK_TURN" 			value="true" />
change it to false

Code: Select all

		<option name="QUICK_TURN" 			value="false" />
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
eragon2450
Posts: 9
Joined: Tue Jul 26, 2011 2:34 pm

Re: Change the normal turn to turn while running

#5 Post by eragon2450 »

Yes but it's not a curve turn, the bot stops at the waypoint and turns, even if the <option name="WP_NO_STOP" value="true" />. With quick turn the bot is always moving, yes that is what I want, but with a slow turn the bot stops to turn, ignoring WP_NO_STOP. This is the case for me atleast. Plus i have never seen a bot move like this, slowly turn and run forward at the same time so i don't know if its possible, but im crossing my fingers for some ideas.

Also i just checked for a 7th time, i dont have

<option name="WP_NO_STOP" value="true" /> in my setting.lua file so what i did was i put it in porfile, could that be the reason it isn't working?
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Change the normal turn to turn while running

#6 Post by rock5 »

I'd say that the bot would ignore the "no stop" option when you disable quickturn because it sometimes can't hit the waypoint if it can't turn fast enough. So it must stop when turning slowly.
  • 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: Change the normal turn to turn while running

#7 Post by lisa »

slowly turning while still moving forward would create a huge arc in the path which would give a much higher chance to get stuck because you make the coords where you want to walk and not plan on such a large deviation from those coords.
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
eragon2450
Posts: 9
Joined: Tue Jul 26, 2011 2:34 pm

Re: Change the normal turn to turn while running

#8 Post by eragon2450 »

So your saying it is possible? and plus i only use the bot for dog meat, and i watch the screen so I think it will work just fine. If I play with the waypoints in that area, I should be able to avoid getting stuck so that isn't something im worried about.
Post Reply