Jump to content
UBot Underground

steelersfan

Fellow UBotter
  • Content Count

    203
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by steelersfan

  1. Still looking for a way to ensure that a proper proxy is input, perhaps by character length? Not sure...
  2. Have to use shopping cart and fill in all info to get?
  3. Is this working with ubot 5 yet? Does it work with your sql lite plugin? When was it last updated? And is it still actively updated? Are there any sales / discounts?
  4. Is this still developed or not?
  5. I used the method deliter provided (thanks to you both by the way!), but is there any way to ensure that an actual proxy is input? if($comparison(#proxy,"!= Does not equal",$nothing)) { then { change proxy(#proxy) wait(1) navigate("http://whatismyipaddress.com/","Wait") wait for browser event("Everything Loaded","") } else { change proxy("None") alert("No Proxy Being Used! (click ok to continue)") } } This way does not account for an incomplete proxy (or even improper information), is there any way to ensure a proper proxy is in
  6. I was thinking of having the change proxy command in a define, then having the button only activate the change proxy command, if there is something written into the UI (tied to the proxy variable), by the user.
  7. So this fixes the inability for ubot to clear cache in browsers? What is going on with it?
  8. I want to apply a proxy for users, only if they press a button. I am trying to figure the logic to allow the button to check if there is a proxy written in the text box provided, and if not set the proxy to "None". Is this even possible?
  9. I'm using listboxes, one has "www.google" or "www.bing" for example, and the other has ".com" and ".ca". Without the quotes.
  10. I am allowing the end user to select a specific page count to loop the bot to run. How could I output a message to them when that count is reached? Along with the counter of course, I just also want there to be a check and then an alert, before the script stops.
  11. I am working on a bot that allows the user to select a search engine and it's location (.com/.ca/.co.uk). To achieve this, I have split two UI inputs into 2 different variables. I am wondering, how can I make a check and output to the user that they must select both before the bot starts? If they are both selected in the UI, then the bot simply navigates to the url made out of both variables. I hope this makes sense to readers, I am at a loss for what to do. I have used several different qualifiers with "if" to no avail...
  12. You know what, I actually didn't even think about stat counter. I have been outputting info with alerts, and do want to stick to them, but I think that stat counter may be a good fit as well! Ahh the choices, lol! Thank you!
  13. So I figured it out on my own, here for any others having similar issues: set(#pagenum,$scrape attribute(<innertext=w"Page * ">,"innertext"),"Global") alert("Url is found at: {#pagenum}") stop script However, for some odd reason, it shows up twice in the alert and I want to get rid of all of the info except the number. I have a similar issue with bing: if($search page(#surl)) { then { set(#pagenum,$scrape attribute(<class="sb_pagS">,"outerhtml"),"Global") alert("Url is f
  14. As I create my bot to scrape for specific data on the search engines, when the data is found, I want to output the page number that it is found on. First to an "alert", and then to file (once I understand how to do an alert with this output, I can easily figure how to output it to file). I am having trouble figuring out how to make the bot find out which page it is on when it finds the item it is programmed for, then output it to an alert. I am guessing that the output part will be fairly easy, once I understand the logic needed to actually seek out and confirm the page number. Is this even
  15. Thank you HelloInsomnia! I was using various methods of determining if the text was on the page, but it was not accurate and hardly worked. I had wondered if I could indeed use the title or id, etc. Now I know how to!
  16. This is a pain. Still no proper solution?
  17. I am trying to make a bot that scrapes bing search. The problem I am having, is that when the search engine runs out of pages in the index, the bot keeps going until the number of loops is used up. I want the bot to stop and return a message when the index no longer has pages in it. With google, there is a message at the last page (most of the time), so that works to stop a google scrape, but bing has no such message. How can I get the bot to understand that there are no more pages in the index to search? As it is now, the bot just clicks the next button in a loop until the search item is fo
  18. I would also like to know other methods to output variable data. Like in a UI HTML window or a specific UI element?
  19. How can I output a "load html" output display? I have a custom load html output for my bot using the normal ubot UI elements, but can't figure how to utilize ssub to display it.
×
×
  • Create New...