scripts/smelting.py

19 lines
479 B
Python
Raw Normal View History

2024-08-09 12:25:30 +02:00
from super_bot import SuperBot
superheat: bool = True
amount_of_bars: int = 10_000
2024-08-09 13:15:59 +02:00
milliseconds_per_bar = 1220 if superheat else 1820
2024-08-09 12:25:30 +02:00
bot = SuperBot()
bars_done = 0
wait_for_milliseconds = milliseconds_per_bar * 60
bot.super_random_sleep(6200, 6300)
while bars_done < amount_of_bars:
bot.left_click()
bot.super_random_sleep(1200, 1300)
bot.press_key(' ')
bot.super_random_sleep(wait_for_milliseconds,
2024-08-09 13:15:59 +02:00
wait_for_milliseconds + 1_000)