11 lines
239 B
Python
11 lines
239 B
Python
from super_bot import SuperBot, hours
|
|
|
|
timer = hours(2)
|
|
bot = SuperBot()
|
|
curson_location = bot.mouse.position
|
|
|
|
while timer.ongoing():
|
|
bot.mouse.position = curson_location
|
|
bot.left_click()
|
|
bot.super_random_sleep(15_000, 20_000)
|