D4rk^S0ul Posted February 13, 2006 Share Posted February 13, 2006 (edited) 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 February 13, 2006 by D4rk^S0ul Link to comment Share on other sites More sharing options...
Valuater Posted February 13, 2006 Share Posted February 13, 2006 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) boezi 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now