diff --git a/raidfarm.py b/raidfarm.py new file mode 100644 index 0000000..c4d1cbb --- /dev/null +++ b/raidfarm.py @@ -0,0 +1,15 @@ +import time +import subprocess + +def click(): + print("Performing left click.") + subprocess.run(['xdotool', 'click', '1']) # Left-click + +# Wait for 10 seconds before starting +time.sleep(10) + +# Continuously perform left clicks every 0.645 seconds +while True: + click() + time.sleep(0.645) # Wait for 0.645 seconds before the next click +