Jump to content
UBot Underground

Why all my Bots crash after the alert function?


Recommended Posts

I don't know why this happen but anytime i fire a alert (notification window) my bot will crash with "not responding" (only compiled bots)

 

anyone knows what to do? A very simple example here:

 

if($contains(#captcha, "Why did this happen?")) {
    then {
        alert("solve CAPTCHA!")
        pause script
    }
}
clicking on the window, it won't respond.
 
Thanks in advance!
Edited by CTSchmidt
Link to post
Share on other sites

It looks like you're missing the " to close out the alert, it might throw an error and freeze the program, try this and see if it works:

if($contains(#captcha, "Why did this happen?")) {
    then {
        alert("solve CAPTCHA!")
        pause script
    }
}
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...