First off, because I'm an insane java programmer, and it's my first day here using this API, this is all "new" to me. I'm writing a tutorial island script, and I want it to click through dialogue..
Now like I said, I am very good with solving problems, and making literally anything, (Seriously you are all in for big treats...)
I already have a solution which is use the overloaded click() method. An overloaded method simply means that a method has a different signature, but the same name.
Anyways, when you don't have the position method specified, and you simply want to do this algorithm -> (move mouse to dialogue position, click x amount of times until dialogue is finished)
You can't do that algorithm with the standard click(boolean rightClick) method... Because, if the user moves his mouse over the client, it will click where the mouse is, ignoring the dialogue and the pattern of clicks which are meant to be executed...
I'm assuming that my already alternative solution may be the best, if not only solution so far, until someone corrects me, we will go with that.