From 738aeeeb20830516abd85860e574461636a02115 Mon Sep 17 00:00:00 2001 From: bone0670 <56081843+bone0670@users.noreply.github.com> Date: Sun, 13 Jun 2021 18:04:41 -0400 Subject: [PATCH] v2.3.3 Fix captcha pause bug and properly stopped the random commands --- main.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 4eb3e13..9dd14e1 100644 --- a/main.py +++ b/main.py @@ -10,7 +10,7 @@ import ctypes -version = "v2.3.2" +version = "v2.3.3" with open("data\config.txt","r") as file: info = file.read() @@ -200,9 +200,11 @@ def on_message(resp): elif "Whoa there. Please tell us you're human!" in content:# If captcha appears stop_process(spam_process) + stop_process(random_command_process) - if input("Captcha detected, program paused. Press enter to restart."): - spam_process = start_spam_process() + input("Captcha detected, program paused. Press enter to restart.") + spam_process = start_spam_process() + random_command_process = start_random_command_process() if __name__ == "__main__": update_title()