Welcome!

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

Sign up now!

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,046
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,046
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