From f9b121c96b6ca2c790f6abc06860aa541100fb92 Mon Sep 17 00:00:00 2001 From: Filip Strajnar Date: Fri, 9 Aug 2024 13:15:59 +0200 Subject: [PATCH] Tighter timing. --- smelting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smelting.py b/smelting.py index 5231c94..45a6e24 100644 --- a/smelting.py +++ b/smelting.py @@ -2,7 +2,7 @@ from super_bot import SuperBot superheat: bool = True amount_of_bars: int = 10_000 -milliseconds_per_bar = 1250 if superheat else 1850 +milliseconds_per_bar = 1220 if superheat else 1820 bot = SuperBot() bars_done = 0 @@ -15,4 +15,4 @@ while bars_done < amount_of_bars: bot.super_random_sleep(1200, 1300) bot.press_key(' ') bot.super_random_sleep(wait_for_milliseconds, - wait_for_milliseconds + 2_000) + wait_for_milliseconds + 1_000)