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
In the waypoint script, you need to modify the script for that waypoint as follows: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).
Code: Select all
<waypoint x="0" z="0">
keyboardPress(key.VK_NUMPAD8);
</waypoint>
Same as above, for the most part.2) is there a command for bot to invite some1 to party?
Thanks in advance
Code: Select all
RoMScript("InviteByName('myOtherCharacter')");
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);
Also what is script for leaving party (or is there an addon for it), because I want to make instance resterted after each run
Code: Select all
RoMScript("LeaveParty()");
Users browsing this forum: No registered users and 8 guests