2 questions about bot possibilities:)

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Nebojsha
Posts: 25
Joined: Sun Nov 15, 2009 10:13 am

2 questions about bot possibilities:)

#1 Post by Nebojsha »

I have read wiki, and didn't find anything to match my desires. So, I need 2 things from bot atm.
1) is it possible for bot to press some button i want at a waypoint (in this case I would like numpad 8).
2) is there a command for bot to invite some1 to party? :)
Thanks in advance
User avatar
Administrator
Site Admin
Posts: 5344
Joined: Sat Jan 05, 2008 4:21 pm

Re: 2 questions about bot possibilities:)

#2 Post by Administrator »

Nebojsha wrote: 1) is it possible for bot to press some button i want at a waypoint (in this case I would like numpad 8).
In the waypoint script, you need to modify the script for that waypoint as follows:

Code: Select all

<waypoint x="0" z="0">
  keyboardPress(key.VK_NUMPAD8);
</waypoint>
2) is there a command for bot to invite some1 to party? :)
Thanks in advance
Same as above, for the most part.

Code: Select all

RoMScript("InviteByName('myOtherCharacter')");
Nebojsha
Posts: 25
Joined: Sun Nov 15, 2009 10:13 am

Re: 2 questions about bot possibilities:)

#3 Post by Nebojsha »

Thanks, any way to make it keep 8 pressed a bit? :) like for 1 sec or so?
Also what is script for leaving party (or is there an addon for it), because I want to make instance resterted after each run :D
User avatar
Administrator
Site Admin
Posts: 5344
Joined: Sat Jan 05, 2008 4:21 pm

Re: 2 questions about bot possibilities:)

#4 Post by Administrator »

Thanks, any way to make it keep 8 pressed a bit? :) like for 1 sec or so?

Code: Select all

keyboardHold(key.VK_NUMPAD8);
yrest(1000);
keyboardRelease(key.VK_NUMPAD8);
See the MicroMacro manual for more keyboard functions and examples.
Also what is script for leaving party (or is there an addon for it), because I want to make instance resterted after each run :D

Code: Select all

RoMScript("LeaveParty()");
Post Reply