From ada8b952598a6c8f782aa4ca6ae3061fa4c97c99 Mon Sep 17 00:00:00 2001 From: piair Date: Thu, 13 Oct 2022 07:18:08 +0200 Subject: [PATCH] too fast dude --- V4.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/V4.py b/V4.py index 21b3fea..0997833 100755 --- a/V4.py +++ b/V4.py @@ -230,7 +230,7 @@ def printf(txt, end="", Mobdriver=driver): def CustomSleep(temps): try : - if FAST : + if FAST and temps > 50: sleep(temps/10) return() if LOG or not LINUX_HOST: #only print sleep when user see it @@ -896,7 +896,7 @@ def LogPoint(account="unknown"): # log des points sur discord elem.click() CustomSleep(5) driver.switch_to.window(driver.window_handles[len(driver.window_handles) - 1]) - CustomSleep(uniform(10, 20)) + CustomSleep(uniform(5,7)) point = search('availablePoints":([\d]+)', driver.page_source)[1] return(point)