Jump to content

Recommended Posts

Posted

hi there i am trying to create a random left click with the mouse but for some reson it clicks at 0,0

MouseClick("left", Random(612, 412, 1), Random(484, 284, 1), 1)

heres the code can some one spot the prob?

Posted (edited)

Actually, I bet your code clicks at 1,1 based on the documentation:

The Minimum parameter comes before the Maximum parameter :lmao:

In your case, min > max, so an error condition results.

try:

MouseClick("left", Random(412, 612, 1), Random(284, 484, 1), 1)

Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Posted

Actually, I bet your code clicks at 1,1 based on the documentation:

The Minimum parameter comes before the Maximum parameter :lmao:

In your case, min > max, so an error condition results.

try:

MouseClick("left", Random(412, 612, 1), Random(284, 484, 1), 1)

<{POST_SNAPBACK}>

thx that makes sence when you say it, i can see how it matters cause i create a empty pool from where the random can be made thx for the help

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...