Jump to content
UBot Underground

myubo

Members
  • Content Count

    67
  • Joined

  • Last visited

Posts posted by myubo

  1. My code works perfect on google demo site, but can't get it to work on below site, can anyone take a look please?  I don't understand how it can work on one site but the other

    https://www.tec.work/account/my-account

    Work here on google demo site:  https://www.google.com/recaptcha/api2/demo

    navigate("https://www.tec.work/account/my-account","Wait")
    wait(4)
    set(#url,$url,"Global")
    set(#AccessKey,"XXXXXXXXXXXXXXXXXx","Global")
    set(#captcha_url,$scrape attribute($element offset(<title="reCAPTCHA">,0),"src"),"Global")
    define $trim to between(#trimto) {
        return($find regular expression(#trimto,"(?<=\\&k=)(.*?)(?=\\&)"))
    }
    set(#GoogleKey,$trim to between(#captcha_url),"Global")
    clear list(%Debug)
    add list to list(%Debug,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha", #AccessKey, #GoogleKey, #url, "", "", 30, 120, "", "", "", "V2"),"Delete","Global")
    change attribute(<id="g-recaptcha-response">,"value",$list item(%Debug,1))
    run javascript("document.getElementById(\"recaptcha-demo-form\").submit();")
    

     

  2. Moved all my files to a new much fast laptop from win10 to win10 and now I have this strange issue...

    Ubot Studios AND any complied bots I make will not load pages visually only, page is white/bland at startup.  Only UPDATEs what I see is when I switch a TAB

    .... deleted

    PS its FIXED, needed to upgrade my graphic card drives if anyone ever runs into a similar issue in the future.

     

     

     

     

  3. "reset browser" vs "clear all cookies" they both seem to do the same thing, what's the difference?

    I also noticed that just using "set user agent" (keep the same agent) does the same thing as "clear all cookies", is this true?

    Also "allow flash (No)" seems to do the same thing as "reset browser", "clear all cookies"

    Which one do I use and when... 

    Thanks for any input, its much obliged 😊

  4. 1 minute ago, luis carlos said:

    That folder is empty on my end, and ubot works just fine.

    Are you sure you are checking that folder for the current user login into your machine?  Can you check for those files under all user under: C:\Users\***

    C:\Users\~CURRENT USER NAME~\AppData\Roaming\Bionize\Python Standard Library

  5. I FIGURED THIS OUT FINALLY!!

    People are missing C:\Users\**\AppData\Roaming\Bionize\Python Standard Library

    My "AppData\Roaming\Bionize\Python Standard Library" folder was empty.  

    Went to my old laptop on which ubot works, copied all the files from that folder onto my new laptop and uBot started just fine.  

    Please hit like if this helped you out so others know this works 😊

     

     

  6. I have all this installed and I still get stuck on "Starting UBot Studios...":

    .NET Framework 4.5, 4.0, 3.5 installed

    Visual C++ 2015-2019 x86 installed

    Visual C++ 2015-2019 x64 installed

    Visual C++ 2008 x86 installed

    I installed all the same stuff in a virtual vmware Windows 10 32bit and uBot starts up fine.  I don't get it, it super frustrating as I really don't want to have to run a virtual windows 10 just to run Ubot Studios.

  7. Same issue here, License verification goes by, and I get stuck at message "Starting UBot Studios...".  I realized that I can not get it to work in 64 bit Win 10.  

    Installed Win 10 in 32 and it works fine.  

    I really wish someone can figure out why it wont boot in 64 bit windows.

    Has anyone else got 5.9.xx to work in 64 bit windows?

  8. Hey everyone been trying to scrape everything between small tags so scrape: "(3 something, 2 more)".  Tried so many things can't get it work.  Some help would be appreciated 

    <small>(3 something, 2 more)</small>

    I've tried any different expression, none work, here is some

    $scrape attribute(<innertext=r"(?<=small>)(.*?)(?=</small)">

    Even tried to scrape with >( )< and it still didn't work

    $scrape attribute(<innertext=r"(?<=small)(.*?)(?=/small)">

     

  9. Hey everyone I have a list of NOT full URLs (end of urls), that I am visiting.  I was wondering how can I add some text to URL before they are visited?  For example my list has URLs that look something like this

     

    item/33949849

    item/53839939

    item/93294384

    ...

    ...

     

    I need to add this: "www.somesite.com/" to the URL before I visit it.

    This is the code I'm using to visit the site, just need to add the text above to it before the visit.

    navigate($random list item(%itemurl),"Wait")
    

    end url should look like this:  www.somesite/item/33949849

×
×
  • Create New...