Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Resolved Bat's API Buglist

Joined
Nov 3, 2013
Messages
609
  • Manifest enums are not defined properly.
    X8N54gI.png

    Effects: Category, ScriptLanguage, ClientType
  • Mouse has no setSpeed method
  • No isMoving in the Player or Actor class
 
Last edited:
Mod Automation
Joined
Jul 26, 2013
Messages
3,121
The mouse implementation is atypical. I will outline its functionality extensively in a dev blog soon, because it is quite complex. Do not expect a setSpeed() method, because speed will be defined by the user, not the bot.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
The mouse implementation is atypical. I will outline its functionality extensively in a dev blog soon, because it is quite complex. Do not expect a setSpeed() method, because speed will be defined by the user, not the bot.
Actually... You may have forgotten, but we decided to allow a multiplier of the base speed if really necessary. To change this multiplier, you must override a method in the Abstract/LoopingScript class.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
  • Manifest enums are not defined properly.
    X8N54gI.png

    Effects: Category, ScriptLanguage, ClientType
  • Mouse has no setSpeed method
  • No isMoving in the Player or Actor class
As for isMoving, we provide the actor's speed. To check if it's moving, simply make sure it's not 0.This is a lot more useful in select situations.
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,121
Actually... You may have forgotten, but we decided to allow a multiplier of the base speed if really necessary. To change this multiplier, you must override a method in the Abstract/LoopingScript class.
I did completely forget about that. Past us made a good call there lol.
 
Top