scripts/vyrehour.py

15 lines
370 B
Python
Raw Normal View History

2025-02-03 16:13:49 +01:00
from super_bot import SuperBot
from datetime import datetime, timedelta
from super_bot.timer import Timer
from subprocess import run
bot = SuperBot()
bot.random_sleep(5000, 6000)
timer = Timer(timedelta(minutes=50))
while timer.ongoing():
print(f"{datetime.now()} Pressing space")
bot.press_key(' ')
bot.super_random_sleep(120_000, 400_000)