Added simple mining script.

This commit is contained in:
Filip Strajnar 2024-08-18 13:42:08 +02:00
parent 93ee2bb257
commit 336336fa35

10
rs3_mining.py Normal file
View file

@ -0,0 +1,10 @@
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)