From 336336fa3558459c61321f31a2eef32f1f70988e Mon Sep 17 00:00:00 2001 From: Filip Strajnar Date: Sun, 18 Aug 2024 13:42:08 +0200 Subject: [PATCH] Added simple mining script. --- rs3_mining.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rs3_mining.py diff --git a/rs3_mining.py b/rs3_mining.py new file mode 100644 index 0000000..18631ea --- /dev/null +++ b/rs3_mining.py @@ -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)