Jump to content
UBot Underground

boutmine

Members
  • Content Count

    11
  • Joined

  • Last visited

Posts posted by boutmine

  1. Hi 

     

    I am having the following:

     

    Ubot 6.1.8

    Windows 10 (64 Bit)

     

    I recently changed the system and i have created multiple bots using ubot.

     

    But with my new system, the software is not even running when checkbox option is ticket.

     

    Example: If checkbox is ON, use the If or Else Function. It is not running, just skipping the whole process.

     

    Has anybody been running the ubot properly with the above config. I am 100% sure it is the bug with ubot itself.

     

    Waiting for anybody to help me.

     

    thanks!!

    Yep i'm having the same problems I'm trying to run some scripts created in ubot 4 and 5 and they will not run in ubot 6 the GUI is all the hell. you cant click certain check boxes you run the script and it just skips the whole process and says done wow lol.  Please fix

  2.  

    try

    clear list(%Debug)
    set(#AccessKey,"","Global")
    navigate("https://www.google.com/recaptcha/api2/demo?invisible=true","Wait")
    wait for browser event("Everything Loaded","")
    wait(1)
    set(#GoogleKey,$scrape attribute(<class="g-recaptcha">,"data-sitekey"),"Global")
    add list to list(%Debug,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha v2 invisible", #AccessKey, #GoogleKey, "https://www.google.com/recaptcha/api2/demo", "", "", 300, ""),"Don\'t Delete","Global")
    if($comparison($list total(%Debug),">",1)) {
        then {
            if($comparison($list item(%Debug,1),"!= Does not equal","ERROR_CAPTCHA_UNSOLVABLE")) {
                then {
                    change attribute(<id="g-recaptcha-response">,"innerhtml",$list item(%Debug,1))
                    run javascript("document.getElementById(\"recaptcha-demo-form\").submit();")
                }
                else {
                    alert($list item(%Debug,1))
                }
            }
        }
        else {
            if($contains(%Debug,"ERROR_NO_SLOT_AVAILABLE")) {
                then {
                    alert("I received ERROR_NO_SLOT_AVAILABLE what does it mean?
    
     That means that current rate on the server is higher than the one you selected in settings. Reminder: you are charged current rate at the moment you upload images, not the maximum rate from your settings. If the current rate on the server is higher than yours  you will receive ERROR_NO_SLOT_AVAILABLE and your captcha wouldn’t be accepted.
     
     https://2captcha.com/support/faq/45")
                }
                else {
                    alert("Error!!!
    {%Debug}")
                }
            }
        }
    }
    divider
    divider
    define ReCaptchaV2 {
        navigate("https://www.google.com/recaptcha/api2/demo","Wait")
        wait for browser event("Everything Loaded","")
        wait(1)
        set(#GoogleKey,$scrape attribute(<class="g-recaptcha">,"data-sitekey"),"Global")
        add list to list(%Debug,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha v2", #AccessKey, #GoogleKey, "https://www.google.com/recaptcha/api2/demo", 120, ""),"Don\'t Delete","Global")
        if($comparison($list total(%Debug),">",1)) {
            then {
                change attribute(<id="g-recaptcha-response">,"value",$list item(%Debug,1))
                click(<id="recaptcha-demo-submit">,"Left Click","No")
            }
            else {
            }
        }
    }
    
    

    I am getting error when running your code. What does this mean and is there a fix ?

     

     

     

    Edit:This has been fixed please ignore.

     

     

     

    Ey5HbbB.jpg

×
×
  • Create New...