Insert into a waypoint one hotkey

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Turbomuemmel
Posts: 7
Joined: Fri Jan 14, 2011 11:02 am

Insert into a waypoint one hotkey

#1 Post by Turbomuemmel »

Hello
Excuse my English but I'll give effortless.

I would like the bot operated at a waypoint the hotkey 1

Krige but only error message

what I have to enter?

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

Re: Insert into a waypoint one hotkey

#2 Post by lisa »

Code: Select all

keyboardPress(key.VK_1)
that is the key above Q, if you want the numberpad 1 then you use

Code: Select all

keyboardPress(key.VK_NUMPAD1)
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
Turbomuemmel
Posts: 7
Joined: Fri Jan 14, 2011 11:02 am

Re: Insert into a waypoint one hotkey

#3 Post by Turbomuemmel »

Thanks before.

But I'll do something wrong.

Check out

[code]<?xml version="1.0" encoding="utf-8"?>
<waypoints>
<!-- # 1 --><waypoint x="-3753" z="-8588" y="216">; yrest(700); keyboardPress(key.VK_1);
</waypoints>[/code]
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Insert into a waypoint one hotkey

#4 Post by lisa »

Code: Select all

<?xml version="1.0" encoding="utf-8"?> <waypoints>
<!-- # 1 --><waypoint x="-3753" z="-8588" y="216">
yrest(700) keyboardPress(key.VK_1)
</waypoints>
probably just that first ; that is causing the issue
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: Insert into a waypoint one hotkey

#5 Post by rock5 »

Also no closing waypoint tag.

Code: Select all

<?xml version="1.0" encoding="utf-8"?> <waypoints>
    <!-- # 1 --><waypoint x="-3753" z="-8588" y="216">
        yrest(700) keyboardPress(key.VK_1)
    </waypoint>
</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: Insert into a waypoint one hotkey

#6 Post by lisa »

rock5 wrote:Also no closing waypoint tag.
actually yeah what rock said =)

for some reason I saw it as

Code: Select all

</waypoint>
and just assumed there were more waypoints.
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
Turbomuemmel
Posts: 7
Joined: Fri Jan 14, 2011 11:02 am

Re: Insert into a waypoint one hotkey

#7 Post by Turbomuemmel »

Thank you thank you

as far as it goes now

so now something else

Can I use the slot (1) in select gifbag with a commanding?
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Insert into a waypoint one hotkey

#8 Post by lisa »

Code: Select all

inventory:useItem(itemNameOrId)
just put in the name or the ID, if putting name then it obviously has to be a string inside " ", if ID then it is a number and no need for the " "
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