Where can I get a free autoclicker for MAC OS X that repeats certain click locations?

0 votes
asked by about Autoclicker
edited by

I'm playing a game where in order to get money, you go to the job, click a thing then go back, sleep, and then repeat the actions. I there a free auto-clicker program for this purpose?

I'm on a MAC OS X.

1 Answer

0 votes
answered by (100k points)
edited by

You can have the autoclicker feature using AppleScript editor found in the Utilities menu.

Open the application and use this sample code and customize it for your own needs:

repeat 1 times
delay 2   // modify the delay for each action
tell application "System Events"
tell application process "YOURGAME" //add the name of the application or browser
delay 2
click (click at {300, 300}) // the coordinates of the autoclick location, just add yours

If you want additional actions, simply add a delay string and then a click string. Copy and paste the code without my comments "// comment"

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register
...