raidfarmattack

This commit is contained in:
2023-11-18 19:01:51 +01:00
parent 682cdf0b32
commit 14d214d71d

15
raidfarm.py Normal file
View File

@@ -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