Jump to content

Mouse hop


Soldtodie

Recommended Posts

Just send a mouse event at that position, making sure it extends from BotMouseEvent or whatever it's called or else the bot will consume it if human input is disabled.


 

Yh doesn't seem possible, you could try this tho tongue.png

	private boolean mouseHop(int x, int y) {
		boolean check;
		int speed = getMouse().getMouseSpeed();
		getMouse().setSpeed(Integer.MAX_VALUE);
		check = getMouse().move(x, y);
		getMouse().setSpeed(speed);
		return check;
	}

the fuck

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...