Jump to content
UBot Underground

XpownX

Fellow UBotter
  • Content Count

    193
  • Joined

  • Last visited

Posts posted by XpownX

  1. I would probably try to make it into a PDF. Off the top of my head I think you could possibly build an HTML table which would be just like using a CSV format with the rows and columns, and then convert the HTML file to a PDF file and print it.

     

    With which ubot studio command I can create HTML and convert it into PDF?

    I like your solution!

  2. check that element and the image are loaded.

    maybe before saving element image verify that element exist on the page

     

    I've added those features but there is one strange issue..

    In multithread it doesn't work even with one thread only, let me explain.. if I go with the monitor to the browser of that thread it works if I leave to the normal ubot studio page when the bot run it won't work.

     

    Anyone know?

  3. Hi all,

     

    So I've created a CSV file with ubot studio then I use it on another ubot studio application. This CSV file has 136 rows.

     

    This CSV file is structererd in this way:

    Column 0:          Column1:        Column2:         Column3:       Column4:

    ProductEan          Text               Text or null       Text or null       Text or null 

     

    Text or null means that may be multiple text lines or a string that contains:  "Null"

     

    Now when I import the CSV with the command: "create table from file", ubot studio fucks up everything, here how it put the csv file inside table:

     

    Row1:    ProductEan(Column0)    Text(Column1)

    Row2:   Here it inserts all the left out columns of the row1

     

     

     

    Can I get some help please? I don't know what is wrong.. the csv file is formatted correctly i might be wrong.. 

     

     

     

     

    post-9518-0-84275800-1548321692_thumb.png

    post-9518-0-77942600-1548321767_thumb.png

    post-9518-0-17676600-1548321872_thumb.png

  4. Hi to all!

     

    I'm need of help!

    I've a csv file with over than 4000 records, and they are formatted in this way:

    L00000639;"item name N.195 item name";"factory name";"1

    000021619;"item name N.195 item name";"factory name";"1

     

    Note they are in different rows but all that text is inside the column A

     

    How can I take the code only ( The one before the comma ;  )

    I've tried using regEx but without any success --> /[A-Z][0-9]9/g

     

    I want to put the codes into a list afterwards.

     

    Thanks to anyone who can help me!

  5. Hi

     

    I'm looking for someone to create for me a torrent uploader and submitter. Basicly it need to have:

     

    -Ability to upload a torrent i choose on multiple torrents sites

    -Multithreaded

    -Program will ask for username and password of the torrent site so it can login

    -I load the description of the torrent in a .txt

     

    Let me know if you can do this , i don't need the source code only the executable.

  6. loop(1) {

        reset account("Any")

        set(#raw user name"{$account data("Username")}{$account data("Zip Code")}""Global")

        set(#valid user$find regular expression(#raw user name".\{4,14\}"), "Global")

    }

     

     

    here guys

     

    don't over think it

     

    set(#pw$random text($rand(4, 12)), "Global")

     

    TC :)

     

    Yeah those two are the shothly answer's but work , no need for longer code that do the same thing , short is better.

    Thanks for the code's !

  7. Hi

     

    I'm trying to learn multithreading , i'm making a bot for making accounts in ubot studio playground , after it has maked the accounts , it save them on a .txt , but it save only one . Could you please check out my code and see what is wrong with it? Thanks :)

     

     

    ui text box("How many threads to open:"#Threads)
    ui stat monitor("Account Created:"#created)
    set(#created, 0, "Global")
    define List {
        thread {
            in new browser {
                set(#Username$account data("Username"), "Local")
                set(#Password$account data("Password"), "Local")
                reset account("Any")
                add item to list(%List#Username"Delete""Global")
                add item to list(%Password#Password"Delete""Global")
                set(#Username$next list item(%List), "Global")
                set(#Password$next list item(%Password), "Global")
                wait(1)
                navigate("http://www.ubotstudio.com/playground/simple-form""Wait")
                wait(1)
                type text(<username field>#Username"Standard")
                wait(1)
                type text(<password field>#Password"Standard")
                wait(1)
                type text(<first name field>$account data("First Name"), "Standard")
                wait(1)
                type text(<last name field>$account data("Last Name"), "Standard")
                wait(1)
                click(<value="Submit">"Left Click""No")
                wait(2)
                if($exists(<innertext="Account Created">)) {
                    then {
                        increment(#created)
                    }
                    else {
                    }
                }
                save to file("C:\\Users\\TheSgtLuca\\Desktop\\username.txt""{#Username}:{#Password}")
            }
        }
    }
    loop(#Threads) {
        List()
    }

×
×
  • Create New...