Skip to content

Commit

Permalink
v2.3.3
Browse files Browse the repository at this point in the history
Fix captcha pause bug and properly stopped the random commands
  • Loading branch information
sterling-tenn committed Jun 13, 2021
1 parent e5077cc commit 738aeee
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 738aeee

Please sign in to comment.