Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Resolved Mouse refusing to click

Joined
Nov 3, 2013
Messages
609
I'm having an interesting bug where the mouse is not clicking. I was thinking that it may have been because I was spam clicking and the clouse recorded it and set the Mouse click length to too low of a value, but I deleted my mouse cache files and the problem still persists.

The code I have simplifies to this:
Code:
boolean clicked = rock.interact("Mine");
blah blah blah
if(clicked)next.hover();
The mouse is moving to the rock object, pauses then proceeds to hover next without clicking the rock. I can tell it's not clicking because no red or yellow interaction X appears.
 
Joined
Nov 3, 2013
Messages
609
through and getanim !=-1 before hovering in also
My script handles the missclick, but it happens throughout the run time of the script.
My script can deal with it, it re clicks just about right away, it just loses a game tick when it happens. I can work around the problem, but there shouldn't be a problem in the first place.
 
Top