scripts/rs3_mining.py

12 lines
276 B
Python
Raw Normal View History

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()
bot.super_random_sleep(15_000, 20_000)