- Thread Author
- #1
RuneMate has allowed bot authors to implement custom mouse path generators for quite some time. With this latest release, we've added an additional built-in path generator that developers can enable if they'd like in their bots. As of this release, bot authors can choose to use a new mouse path generator built on the concept of multilayer perceptrons (MLP), a type of neural network. There has been no change made to the default mouse implementation. The model that the MLP path generator is currently using was built from around 3,000 mouse movements collected over several days by various bot authors, but the model powering it is likely to change over time.
Bot authors can enable this in their bots by adding the following line in their onStart method
Mouse.setPathGenerator(Mouse.MLP_PATH_GENERATOR);
Credit to @Parametric for developing this path generator and the framework that allows it to run in any JVM where as most java MLP implementations force the usage of a 64bit JVM.
A video of it in use can be found here
If you have any questions regarding this please feel free to ask
Bot authors can enable this in their bots by adding the following line in their onStart method
Mouse.setPathGenerator(Mouse.MLP_PATH_GENERATOR);
Credit to @Parametric for developing this path generator and the framework that allows it to run in any JVM where as most java MLP implementations force the usage of a 64bit JVM.
A video of it in use can be found here
If you have any questions regarding this please feel free to ask
Last edited: