bbaffert 0 Posted March 8, 2005 mouseclick("left",607,533,1); How can I write this in my script to make the mouse click randomly in the area of say x 600 to 650 and from y 500 to 550? Just a random click in that area when instructed to instead of the exact same spot each time. PS- Great board. Have learned alot the last few days reading the manual and reading posts. Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted March 8, 2005 (edited) mouseclick("left",607,533,1);How can I write this in my script to make the mouse click randomly in the area of say x 600 to 650 and from y 500 to 550? Just a random click in that area when instructed to instead of the exact same spot each time.PS- Great board. Have learned alot the last few days reading the manual and reading posts.<{POST_SNAPBACK}>While 1$X = Random ( 600 , 650,1)$Y = Random ( 500 , 550,1)mouseclick("left",$X,$Y,1)WEndI have no idea if it works, but something like that... Edited March 8, 2005 by Wb-FreeKill Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted March 8, 2005 Yeah it works, but remeber to add an exit button, i didn't Share this post Link to post Share on other sites