Jump to content
UBot Underground

Chezzyk

Members
  • Content Count

    19
  • Joined

  • Last visited

Posts posted by Chezzyk

  1. Hello, im getting this error whne trying the latest example:

    Unexpected character encountered while parsing value: E. Line 1, position 1.

    edit:solved

    I just needed to add access key directly and add list clearing and it works now. great plugin.

  2. Hello, here is my bot:

    set headless browser("Off")
    navigate("https://www.xxx.com/login","Wait")
    wait for browser event("Page Loaded","")
    wait(2)
    click(<image="___IMAGE___7___IMAGE___">,"Left Click","No")
    ui text box("Total Loops:",#total loops)
    ui text box("name",#name)
    ui text box("pass",#pass)
    clear list(%neupdatovany)
    ui stat monitor("Total Loops:",#total loops)
    ui stat monitor("Loop:",#row)
    set(#row,0,"Global")
    wait(2)
    ui open file("xxx adresy",#adresa)
    create table from file(#adresa,&adresy)
    wait for browser event("Page Loaded","")
    wait(2)
    type text($element offset(<username field>,1),#name,"Standard")
    type text($element offset(<password field>,2),#pass,"Standard")
    wait(2)
    click(<name="rem">,"Left Click","No")
    wait(1)
    click(<image="___IMAGE___6___IMAGE___">,"Left Click","No")
    wait for browser event("Page Loaded","")
    wait(3)
    set headless browser("On")
    loop(#total loops) {
        navigate($table cell(&adresy,#row,0),"Wait")
        set(#soucasnadresa,$url,"Global")
        if($either($exists(<innertext=w"* days ago">),$exists(<innertext="1 month ago">))) {
            then {
            }
            else {
                add item to list(%neupdatovany,#soucasnadresa,"Don\'t Delete","Global")
            }
        }
        increment(#row)
    }
    save to file("C:\\Users\\Administrator\\Desktop\\xxx\\xxx.txt",%neupdatovany)
    

    I would say its pretty simple, but it runs pretty slow. Problem is not my PC or my internet speed, also speed of the site should not be problem, because it is one of the biggest sites in the world which I'm sure has great servers. Other bots runs pretty fast and I tested it on my home PC as well as VPS. Yet it is still very slow, What can I do to make my bot run faster except using headless browser? When I turn off wait for browser event("Page Loaded","") it does not work as I need so I do not know what can I do now, I tried to make everything as simple as possible.

  3. this is how my script looks now, everything works except that one thing:

    ui text box("Total Loops:",#total loops)
    clear list(%neupdatovany)
    clear list(%updatovany)
    ui stat monitor("soucasna adresa",$url)
    ui stat monitor("Total Loops:",#total loops)
    ui stat monitor("Loop:",#count)
    set(#row,0,"Global")
    wait(2)
    ui open file("urls adresy",#adresa)
    create table from file(#adresa,&adresy)
    loop(#total loops) {
        clear cookies
        navigate($table cell(&adresy,#row,0),"Wait")
        wait for browser event("Page Loaded","")
        set(#soucasnadresa,$url,"Global")
        if($search page("day")) {
            then {
                add item to list(%updatovany,#soucasnadresa,"Don\'t Delete","Global")
            }
            else {
                add item to list(%neupdatovany,#soucasnadresa,"Don\'t Delete","Global")
            }
        }
        wait(1)
        increment(#row)
    }
    save to file("C:\\Users\\Administrator\\Desktop\\urls\\neupdatovanyurls.txt",%neupdatovany)
    save to file("C:\\Users\\Administrator\\Desktop\\urls\\updatovanyurls.txt",%updatovany)
    
  4. Hello, I'm trying to create scraper that will save me only url of pages that does not contain certain word. In my case it is word "day", problem is that  $search page takes as possitive result also words that contains day, like "today" which I do not want. is there any way how to perform "exact search" with ubot? thanks for any help.

  5. Hello, I have page with two elements i want to randomly click, how can i do this in most simple way? Seems rand can only use numbers and in this case I would need just one of two values, but they are not numbers. Maybe I could somehow connect these values to numbers and when rand enters one of these number, it would actually enter one of my values?

  6. Hello, I have downloaded this plugin, but have some problems with it. Is there any tutorial how to use it? I have also bought the Advanced Image plugin, just because of this and Im not sure if I need it at all or not. I cannot use the code, because it keeps telling me when I want to switch to node view that there is an error in my code, but I do not see any. Can anyone help me?

     

    Edit: Ok seems I have found one working code here, but it seems this version is not able to solve the captchas that says you need to solve more than one set of pics. Is there any code that does that?

  7. I dont get it, clearing cookies is probably one of the most important functions in any account creating bot and probably huge amount of other bots, so I guess that is something developers should be dealing with and not us users? Its not my case, but are all those guys who sell their bots going tell their customers to use ccleaner after every loop? :)

  8. Hello, can anyone tell how well this code and those APIs work? I used imacros and 9kw API to solve the new recaptcha, but it was usually too slow so the captcha expired and I found this thread so I bought Ubot and I hoped this will work better, but I did not realize you need two more plugins fo this to work so it would cost me another $150. Could please anyone tell me how fast and accurate it is now? Thanks a lot guys.

×
×
  • Create New...