Class OvershootSettings

java.lang.Object
com.epicbot.api.shared.bot.mouse.OvershootSettings
All Implemented Interfaces:
IMouseSettings.IOvershootSettings

public class OvershootSettings extends Object implements IMouseSettings.IOvershootSettings
  • Constructor Summary

    Constructors
    Constructor
    Description
     
    OvershootSettings(int numberOfOvershoots, int distanceForOvershoots, int overshootsTime, int overshootsRandomModifier, double overshootsSpeedup)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    The minimum distance away from the target the mouse must be to be able to overshoot.
    int
    The minimum amount of overshoots that can occur during a mouse movement.
    int
    A random modifier that is applied to the overshoot distance.
    double
    When the mouse overshoots the target, the speed of the next movement will be increased by at least this value.
    int
    The minimum time in milliseconds that an overshoot movement will take.
    void
    setDistanceForOvershoots(int distanceForOvershoots)
    The minimum distance away from the target the mouse must be to be able to overshoot.
    void
    setNumberOfOvershoots(int numberOfOvershoots)
    The minimum amount of overshoots that can occur during a mouse movement.
    void
    setOvershootsRandomModifier(int overshootsRandomModifier)
    A random modifier that is applied to the overshoot distance.
    void
    setOvershootsSpeedup(double overshootsSpeedup)
    When the mouse overshoots the target, the speed of the next movement will be increased by at least this value.
    void
    setOvershootsTime(int overshootsTime)
    The minimum time in milliseconds that an overshoot movement will take.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • OvershootSettings

      public OvershootSettings()
    • OvershootSettings

      public OvershootSettings(int numberOfOvershoots, int distanceForOvershoots, int overshootsTime, int overshootsRandomModifier, double overshootsSpeedup)
  • Method Details