15 lines
370 B
Python
15 lines
370 B
Python
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) |