Jump to content

Random Mouse Clicker


 Share

Recommended Posts

I am working on a program that will click around the same spot but will be random 2 out of 3 of the clicks so that it cant be seen so far i have this:

While 1
        $Mouse = MouseGetPos()
        $Random = Random(0, 2)
        MouseClick("Left", $Mouse[0] + $Random, $Mouse[1])
        Sleep(1650)
        $Random2 = Random(0, 2)
        MouseClick("Left", $Mouse[0] - $Random, $Mouse[1] + $Random2)
        Sleep(1650)
        MouseClick("Left", $Mouse[0], $Mouse[1] - $Random2)
        Sleep(1650)
WEnd

But i made a seperate program that monitored the clicks and 1 of the 3 clicks wernt always the same can any1 tell me why i personly cant see why it doesnt?

Edited by D4rk^S0ul
Link to comment
Share on other sites

maybe this

While 1
        $Mouse = MouseGetPos()
        $Random = Random(0, 2, 1)
        MouseClick("Left", $Mouse[0] + $Random, $Mouse[1])
        Sleep(1650)
        $Random2 = Random(0, 2, 1)
        MouseClick("Left", $Mouse[0] - $Random, $Mouse[1] + $Random2)
        Sleep(1650)
        MouseClick("Left", $Mouse[0] - $Random, $Mouse[1] + $Random2)
        Sleep(1650)
WEnd

8)

NEWHeader1.png

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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