mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
14 lines
337 B
Python
Executable File
14 lines
337 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import pyautogui
|
|
import random
|
|
import time
|
|
|
|
try:
|
|
while True:
|
|
for i in range(1, random.randint(1, 9), 1):
|
|
pyautogui.moveRel(random.randint(-100, 100), random.randint(-100, 100))
|
|
time.sleep(random.random())
|
|
time.sleep(random.randint(1, 4))
|
|
except KeyboardInterrupt: pass
|