Gunman Posted February 1, 2021 Share Posted February 1, 2021 1 hour ago, Cod3xDev said: I've experienced this too, thought it was just me and my own private scripts lol XD If you're using private scripts why not tweak the mouse to be faster lol Think there's another setting that controls this but here's the code for it getBot().setMouseMoveProfile(new MouseMoveProfile() .setNoise(0) //default 2.15 .setDeviation(0) //default 7 .setOvershoots(0) //default 2 .setSpeedBaseTime(0) //default 185 .setFlowSpeedModifier(0) //default 1.0 .setMinOvershootDistance(0) //default 25 .setFlowVariety(MouseMoveProfile.FlowVariety.HIGH) //default MouseMoveProfile.FlowVariety.NORMAL .setMinOvershootTime(0) //default 375 ); For most of them lowering the number turns the setting up. So like for speed base time if you set it to 0 the mouse will instantly teleport, set it to 800 and it will move at 10 pixels a second basically lol. 1 Quote Link to comment
Cod3xDev Posted February 2, 2021 Share Posted February 2, 2021 22 hours ago, Gunman said: If you're using private scripts why not tweak the mouse to be faster lol Think there's another setting that controls this but here's the code for it getBot().setMouseMoveProfile(new MouseMoveProfile() .setNoise(0) //default 2.15 .setDeviation(0) //default 7 .setOvershoots(0) //default 2 .setSpeedBaseTime(0) //default 185 .setFlowSpeedModifier(0) //default 1.0 .setMinOvershootDistance(0) //default 25 .setFlowVariety(MouseMoveProfile.FlowVariety.HIGH) //default MouseMoveProfile.FlowVariety.NORMAL .setMinOvershootTime(0) //default 375 ); For most of them lowering the number turns the setting up. So like for speed base time if you set it to 0 the mouse will instantly teleport, set it to 800 and it will move at 10 pixels a second basically lol. You're a legend thankyou! 1 Quote Link to comment