no moving waypoint.xml

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

no moving waypoint.xml

#1 Post by lisa »

Hi just wondering if anyone has come up with a way to have the bot not move and also continue on it's merry way. Especially with the new egg pet functions I would like to just sit and also have egg harvesting away =)

Any help appreciated
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
botje
Posts: 656
Joined: Wed Oct 27, 2010 7:17 am

Re: no moving waypoint.xml

#2 Post by botje »

hmm... what about making a waypoint with the same coordinates?

that would make bot loop tru them, but still stay put right?

just a stupid idea xd

Botje
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: no moving waypoint.xml

#3 Post by lisa »

yeah tried it, it looks like it spins, not constantly but enough to not be using library lol
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
botje
Posts: 656
Joined: Wed Oct 27, 2010 7:17 am

Re: no moving waypoint.xml

#4 Post by botje »

oh i see xd

well, was worth a try ^^

Botje
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: no moving waypoint.xml

#5 Post by rock5 »

Like I mentioned in another post, you could do something like this if you're somewhere safe.

Code: Select all

<waypoints>
<onLoad>
    checkEggs()
    yrest(1000) -- How ever often you want it to check.
</onLoad>
</waypoints>
Or, once I add it to RBAssist.lua, you can use that instead. The benefit being, RBAssist will fight back if attacked.
  • 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: no moving waypoint.xml

#6 Post by lisa »

I truely did wish it was that easy, tried it a few times. First time it seemed to sit there fine but then after a couple mins it hit a buff skill and started running to waypoint #1 0,0

Next few times I started it up fresh and it just started running to waypoint #1 0,0

(edit)
The skills themselves seem to be the trigger point, last try it did the buff and then just started spinning in circles, round and round and round and round.

Might try new profile with no buff skills.

(edit #2)
created profile with no buff skills and also added in 1 waypoint of the location character is standing, bot just constantly says moving to waypoint #1 but it has been standing still and also harvesting with pet for over 30 mins now. The first time I set the WP location though it did spin round and round non-stop, so not stable/reliable way to do it but kind of works.

Seems when bot is just slightly off the coords it does it's spinning move, it is visible by other players aswell.

Guess I'll just keep working on it =)
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: no moving waypoint.xml

#7 Post by rock5 »

Sorry, forgot to add a loop.

Code: Select all

<waypoints>
<onLoad>
    repeat
        checkEggs()
        yrest(1000) -- How ever often you want it to check.
    until false
</onLoad>
</waypoints>
  • 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: no moving waypoint.xml

#8 Post by lisa »

Ahh i get it now, with the until false it will sit there not moving until you run out of the harvesting product. Then it will continue with the waypoints part of the waypoint.xml?

Either way it is sitting perfectly still and pet is harvesting nicely, ty
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: no moving waypoint.xml

#9 Post by rock5 »

lisa wrote:Ahh i get it now, with the until false it will sit there not moving until you run out of the harvesting product. Then it will continue with the waypoints part of the waypoint.xml?
No, that's not what you asked for. 'false' will never = 'true' so it will never leave that loop. If you want it to continue with the waypoint file after you run out of tools then it would be something like,

Code: Select all

until inventory:itemTotalCount(item) == 0
  • 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