2024-08-18 13:42:08 +02:00
|
|
|
from super_bot import SuperBot, hours
|
|
|
|
|
|
|
|
|
|
timer = hours(2)
|
|
|
|
|
bot = SuperBot()
|
2024-08-18 13:43:51 +02:00
|
|
|
bot.super_random_sleep(5_000, 6_000)
|
2024-08-18 13:42:08 +02:00
|
|
|
curson_location = bot.mouse.position
|
|
|
|
|
|
|
|
|
|
while timer.ongoing():
|
|
|
|
|
bot.mouse.position = curson_location
|
|
|
|
|
bot.left_click()
|
2024-08-18 13:45:33 +02:00
|
|
|
bot.super_random_sleep(25_000, 35_000)
|