From 14d214d71d002acbc2bd79fc1145e05855d70019 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 18 Nov 2023 19:01:51 +0100 Subject: [PATCH] raidfarmattack --- raidfarm.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 raidfarm.py 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 +