GenericMeme46 12 Share Posted June 24, 2019 I'm making a script and I need the mouse to be a lot faster. I've set the movement speed to near instant however there's a forced short pause in between actions that I do not know how to eliminate. An example would be if it's told to use an item it will right click and pause for maybe 0.1ms before it moves to the "Use" option and I need this short delay removed. Link to comment Share on other sites More sharing options...
GenericMeme46 12 Author Share Posted June 24, 2019 I pretty much need to be able to have the mouse bouncing around CONSTANTLY doing something but the built in delay is breaking my script entirely.. Link to comment Share on other sites More sharing options...
GenericMeme46 12 Author Share Posted June 24, 2019 https://gyazo.com/ea554dc409fffb86f2e3cfd46f8f24b3.gif The above link highlights my problem. When it right clicks you can see the right click menu for a short time before it actually clicks anything and I need to get rid of this delay. Link to comment Share on other sites More sharing options...
GenericMeme46 12 Author Share Posted June 24, 2019 The solution for my issue: Use this page to make my own mouse interactions https://dreambot.org/javadocs/org/dreambot/api/input/Mouse.html Link to comment Share on other sites More sharing options...
beezdul 56 Share Posted June 25, 2019 (edited) It's part of the anti-ban in the client. You'll have to make your own input if you need it to be faster than the default. Also you can change the mouse speed in the client settings, see if that helps. Edited June 25, 2019 by beezdul Link to comment Share on other sites More sharing options...
Koschei 147 Share Posted July 14, 2019 On 6/24/2019 at 11:24 AM, GenericMeme46 said: I'm making a script and I need the mouse to be a lot faster. I've set the movement speed to near instant however there's a forced short pause in between actions that I do not know how to eliminate. An example would be if it's told to use an item it will right click and pause for maybe 0.1ms before it moves to the "Use" option and I need this short delay removed. If you need it to be near instant just set the mouse to hop instead. Put this onto your onstart: getMouse().setAlwaysHop(true); Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now