Jump to content
UBot Underground

Josh

Fellow UBotter
  • Content Count

    348
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Josh

  1. In the first part of your bot, Set a variable #numberoflists = 0

    Just before saving  and deleting the list, increment #numberoflists

    When the bot ends, display #numberoflists  or list total = #numberoflists times 10,000 

     

    Yeah I thought of that, but that doesn't allow monitoring of the number in real time. Which is what I'm trying to do.

  2. So I came up with a small work around when scraping gigantic lists to reduce the memory used in my bots and keeps them from crashing.

     

    Before this fix the bots would get to about 40k scraped urls and then freeze up and the only way to even shut them down would be to end the process in the task manager.

     

    The work around is basically this...

     

    once the list reaches 10K it saves the list to a text file. The end result being a bunch of numbered text files like search-1, search-2, search-3 etc.

     

    Previously my stat monitor was tracking the total number of urls scraped by exactly that.... setting the stat monitor variable to the total number of items contained in that list...

     

    Now that I am saving that list to a text file and then clearing the list the stat monitor is only showing the current number of urls in the list rather than the total number of urls that have been scraped.

     

    Can anyone think of a good way to keep track of the total number of urls scraped when the list is being cleared every so often?

  3. I wish I could some how copy code from one bot to another including the images. Oh the time I could of saved....

     

    Edit: Hey I wonder if I added the nodes with the images to my private bot bank if that would work. I imagine it would. Of course it would. Why didn't I think of that sooner?

     

    Yes the images do copy, but sometimes I have had them disappear after the fact.

  4. When I type a 'Command' into the search box, select it and hit enter, the node automatically appears in my work area, but this doesn't work with parameters.

     

    I would love it if I could type into the search box and hit enter and the parameter would appear in the node, rather than having to find and drag it from the sidebar.

     

    +1 I have said this before as well. This would be so much faster than using the cursor to drag the parameter node.

  5. Please add Favorite commands section

    So we can easily drag the most used commands to our work area. This will save a lot of time.

     

    This is basically the private bot bank. Save your commands in the private bot bank. Then all you have to do is drag that command from the private bot bank to your bot.

  6. Heres another feature request

     

    Update the botbank monthly or remove the thing entirely cause its most times not reliable and have to build our own anyway

     

    I do use the private bot bank for ubot code snippets I use often. This way I don't have to open another ubot file to get to my code snippet. It is saved in my private bot bank and I simply have to click to edit the code in the bot bank, and then copy and paste it into the bot I'm working on. This came in handy as well with botguru secured and needing to enter the license key each time I added it to a bot. This way I save the command node in the private bot bank with the license key already inserted, and then no need to go find my license key to copy and paste.

  7. ui open file("Email File:", #emailfile)

    ui text box("Private proxy user name:", #privateproxyusername)

    ui text box("Private proxy password", #privateproxypassword)

    add item to list(%proxies, $list from file("C:\\"), "Delete", "Global")

    clear cookies

    set user agent("Internet Explorer 6")

    set referrer("https://google.ca")

    set proxy credentials(#privateproxyusername, #privateproxypassword)

    change proxy($next list item(%proxies))

    well the proxies are stored in a table from another part of the bot and the first part of the proxy changing and credentials setting is done previously. Sorry I didn't mention that above. I was really having a hard time checking proxies and moving on to another if the proxy was bad. I had all kinds of if then commands.

  8. ok so after hours of coding and recoding I think I have this figured out...

     

    loop while($not($exists(<id="idDiv_PWD_UsernameExample">)) AND $comparison($add(#proxy num, 1), "<=", $table total rows(&proxies))) {
        change proxy($table cell(&proxies, #proxy num, 0))
        change browser properties()
        change useragent()
        navigate("http://hotmail.com", "Wait")
        wait complete()
        increment(#proxy num)
        wait(1)
    }

    If anyone has any thoughts or a better implementation I would be happy to hear it.

     

    This is looking to see if the username field does not appear on the page and if the IP number in the table is less than or equal to the total number of proxies. Then it changes the proxy and does the check again.

  9. So I'm working on my first public bot that uses proxies. Because people (in general) are stupid I'm trying to make it as mistake proof as possible. I don't need someone to explain to me how to make proxies work. That is easy enough as I have proxies working and changing already.

     

    What I'm am hoping to get is some advise on how to implement them efficiently. I understand how to do this, but I think I'm just coding it really inefficiently as the bot is really bogging down as I'm working.

     

    This particular part of the bot isn't anything special. It is simply creating hotmail accounts to be used on another part of the bot.

     

    If anyone has some advise or code examples it would be greatly appreciated.

  10. So I tried it out, and it's pretty cool. If you made it so that you don't have to use images for the tabbed ui and you made it so that you could add more than just 5 items to the tabbed UI I would def purchase it, but those two limitations means that I have to host images for bot I build on my server and I'm limited to only 5 tabbed menu items, and that pretty much won't work for me. If you decide to add those two functions hit me up and I'll make a purchase!

  11. So I have a list that has a bunch of duplicates in it. I am getting rid of the duplicates and outputing the list to a variable.

     

    But I would also like to output the duplicates to a variable so that one variable shows the list without duplicates and the other variable show the list of duplicates.

     

    I know how to remove the duplicates just not how to show which duplicates were removed. I have tried using the subtract lists parameter, but that doesn't seems to work. Any ideas?

     

    Example:

     

    Original list....

     

    dentist Plano

    dentist Plano

    best dentist Plano

    dentist Dallas

    best dentist Dallas

    greatest dentist Plano

    leading dentist Plano

    supreme dentist Plano

    supreme dentist Plano

    premium dentist Plano

    greatest dentist Dallas

    leading dentist Dallas

    supreme dentist Dallas

     

    List with duplicates removed....

     

    dentist Plano

    best dentist Plano

    dentist Dallas

    best dentist Dallas

    greatest dentist Plano

    leading dentist Plano

    supreme dentist Plano

    premium dentist Plano

    greatest dentist Dallas

    leading dentist Dallas

    supreme dentist Dallas

     

    List of removed duplicates....

     

    dentist Plano

    supreme dentist Plano

  12. I downloaded V4 and it worked great, except for the extra strings on the results urls. So I downloaded V5, but it doesn't run at all and actually crashed my computer a couple of times - couldn't shut it down or anything. I'm using V4.5 professional edition - could that be why? On windows 7

     

    It was created with DEV version. I can compile it and send it to you if you like.

  13. Really???

     

    No offense but I find that hard to believe. Everybody that has tried to deal with very large code containing many conditional statements and loops has experienced the browser instability. And no it's not my coding structure which is good.

     

    I just find it hard to believe that you have never experienced this before. Hopefully the next update will solve it once and for all for the rest of us.

     

    Yes the big bots are horrible, and if I let a bot run over night it always crashes. Even bots that I have bot from other people crash if I let them run too long.

×
×
  • Create New...