Jump to content
UBot Underground

theninjamanz

Fellow UBotter
  • Content Count

    586
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by theninjamanz

  1. Thanks for this I will give it a try.
  2. Using the Wait for Element Command I am unable to do a $NOT WAIT UNTIL $EXISTS Basically when particular object on the page is no longer there IU want the item to continue. Any offers of what could be ubot logic on this?
  3. No, but where would that go exactly?
  4. round and round it's going and I can't work it out. I have 2 lists. here's one a b c d e f g here's the other h i j k l m n o p I want to create a text file that has the following (combines both the above in a CSV) a,h b,i c,j d,k e,l Can someone help me. I am tring to add both these lists to a table in columns 0 and 1, but I just get one pasted after the other!
  5. Does anyone know how I can send the space bar. I have a site that loads messages once a user scrolls down the page. So If I can send a spacebar I can open up all the messgages. Thanks Ninja
  6. In my case it does not matter that the list is organized in Reverse Alphabetical order. So here is the code that worked for me. set(#Cleaned Text, $sort list($list from file("{$special folder("Application")}\\examplelist.txt"), "Descending"), "Global") save to file("{$special folder("Application")}\\cleanedlist.txt", #Cleaned Text) All the Blank lines end up at the bottom of the file. Might help someone else. removeblanklines.ubot examplelist.txt
  7. Thank you all for your suggestions, which I will try. SURELY SURELY though, the developers can come up witha solution that rights this in an easier way? Such as a button inside the add to list, remove blank lines! Is anyone a REGEX ninja? Surely you could just Add to a list inside a REGEX that removes carriage returns?
  8. What is now consdidered the best way to remove blank lines from a list. When scraping data I get the following (ubot latest version). kw1 kw2 kw3 kw4 kw5 kw6 I've tried sorting this list alphabetically and it does nothing but rearrange the keywords in the two groups, alphabetically. I want this: kw1 kw2 kw3 kw4 kw5 kw6 As this list gets built on a list, after running it 100 times the list is going to be pretty fragmented with these blank space repeats. Surely this has been nailed I know it has...it must have been. Where's the button Cheers.
  9. I tried to do this earlier. Scraped an attribute with a wild card which pulled back a list of titles. Then I added that list ot a table as a column row 0, column 0. Then I scraped another item on the page and added that to another list, and then tried to add that list to the table in column 1, row 0. Any idea why what happened when I saved off the table why I got one set of items after another (IE it was just a long list of list A and list . Cheers.
  10. Nice, hope this works for you dude, I built one of these for personal use
  11. What's the best way to check a scraped URL against a list and then perform an action accordingly. I'm just having problems getting my head around the where a loop might occur. If I set a list to a parameter and check for the existence of a variable that is set to the $docURL will it just look for that single value even if there are 1000s of URLS in the parameter? Thanks
  12. I have two lists, List A and List B and I want to create List C. List C is just the unique values of LIST A and LIST B In other words If list A = pete jane paul fred jamie And list B = pete jane aloha Then list C = paul fred jamie aloha what's the best way to do that!! Happy New Year all.
  13. I'd like to request a tutorial, as captcha's are everywhere, that shows how to setup a Custom Function that will check retry a recaptcher based on a user input of attempts. I'm sure many of us have soft that requires solving, so having an option to say RETRY captcha's 3 times before moving on, would be great!
  14. http://support.google.com/mail/bin/answer.py?hl=en&answer=13287
  15. thanks, looks like i was missing the reset account.
  16. In a nutshell it's like this: Zenno is great because of it's proxy management panel, and the ease of multithreading. But you won't, without some serious serious amounts of study, be able to do things as easily as with ubot. I can build ubot for browser automation tasks. Literally the sky is the limit (okay so the updates can sometimes screw you..but it is largely a legacy issue this). That means I can do very natural things store stuff, and generally think things out. If i were going to create views on pages, I'd use Zeeno. If I were going to submit to solid sources of sites simple tasks
  17. Email is working for me. This is a GREAT feature.
  18. Thanks mate, that's a useful piece of info.
  19. Cooking up my brain this one.... See this code: set(#random username, "{$account data("First Name")}{$account data("Username")}{$rand(1956, 2011)}", "Global") In theory if I set this up inside a a loop and then each time the loop runs I use the variable #random username on a text box field (such as Google search), I should get a new set of data each time it cycles. But insted what I get First Name and Username as the same values and only the $rand function working. However, when I run the node manually, I get the output desired, IE Firstname, Username and $Rand all different. What
  20. Don't get this at all. add item to list(%current email address, $list from file("{$special folder("Application")}\\emails.txt"), "Delete", "Global") set(#current email address, $next list item(%current email address), "Global") set(#registration details, "Name: {#random username} Email Address: {#current email address} However, when I actually test this, it pulls all threee values from the text file that contains the list of email addresses. I might expect this if I had done a READ file, but with an add to list no. I'm clearing the lists and have also, just for extra scupo
  21. Thanks for clearing up another question I was going to post - that's a good option. But what I want to be able to do is switchoff captchers from the UI. NOt via the dropdown "catpcha services".
×
×
  • Create New...