Jump to content
UBot Underground

esthonwood

Members
  • Content Count

    25
  • Joined

  • Last visited

Community Reputation

0 Neutral

About esthonwood

  • Rank
    Member

System Specs

  • OS
    Windows 8
  • Total Memory
    4Gb
  • Framework
    v4.0
  • License
    Developer Edition

Recent Profile Visitors

2460 profile views
  1. Hi guys! I'm working on logging in to a client's website but when I do it on UBot, a popup appears instead of normally redirecting to the user dashboard. When I log in using a regular desktop browser, the popup doesn't appear. I have already used the "user agent" command but it still doesn't work. Could it be that their website detects that it's a ubot browser and prevents it from logging in? How do I get around this? Thanks in advance for any help and suggestions!
  2. Hi everybody! So I'm making a bot for a client and I encountered a problem in the login process. When logging in from a regular browser, a successful login redirects me to the user dashboard. But when logging in from UBot successfully, it doesn't redirect to the user dashboard. Instead it shows a modal or in-page popup with nothing on it except for the "Close window" link. Any thoughts on how to get around this? Thanks in advance. Cheers!
  3. Thank you for the suggestions, guys. I'll check out Meter's system. Cheers!
  4. Hi guys, I want to sell my bots. Do you have ideas or suggestions on how to go about licensing them? Thanks
  5. How to add the "/auto" to the scheduluer? I can't seem to make the scheduler work in UBot 5. Any help or tutorial is greatly appreciated.
  6. Yeah me too. Can anybody create a tutorial on how to do this, please?
  7. Hi guys, so I made this bot to scrape tumblr users by search keyword. Here's what I did: 1. Enter a keyword on the search box. 2. Scroll down the page 10 times 3. Scrape users Is there a faster way to do this?
  8. Hi TC, what I'm trying to do is open each URL (from the %url list) inside a thread. When you say it works fine for you, do you mean that the proxy is successfully changed and the URLs are loaded fully? You see, in my case, it would open the URL inside a thread and the browser address bar would indicate that it's loading the URL but the browser just shows a blank white page.
  9. Hi Traffik Cop, I've adopted the code from your proxy checker above. Any ideas why, when I add the proxy, the bot won't work? I'm sorry for continuously bugging you guys, but I just can't seem to make the proxy work in a multi-thread Any help is greatly appreciated. ui open file("Proxy file", #proxy file) ui drop down("How many threads?", "2,3,4,5", #num threads) define createLists { clear list(%proxy list nest item) clear list(%url list) add item to list(%url list, "www.google.com", "Delete", "Global") add item to list(%url list, "www.bing.com", "Delete", "Global") add
  10. the proxy name is not the same as the password.
  11. Ok, so I've made some changes on my code and I've set all the variables inside the thread to be local. It still doesn't work. I apologize for bugging you guys, but I've been at this for days and I can't make the proxy to work inside the thread Any ideas? comment("Proxy is in this format: IP:PORT:USERNAME:PASSWORD") ui open file("Proxy", #proxy list) clear list(%proxy list) add list to list(%proxy list, $list from file(#proxy list), "Delete", "Global") clear list(%url list) add item to list(%url list, "www.google.com", "Delete", "Global") add item to list(%url list, "www.bing.com", "Delete",
  12. Ok, I think I understand it now. I will let you know how this turns out. Thanks so much for your help
  13. I followed LoWrIdErTJ's multi threading example except that I removed the defines. Is it really necessary for multi threading to work to put the commands in different defines? Also, I don't think there's a problem with #url list index because the whole code works. It only stops working when I added the proxy inside the thread. Try removing the setProxy(#current proxy) command from inside the thread code and you'll see that it works.
  14. Hi guys, so the multithreading works with my code below but only if the "sexProxy" define is removed from inside "thread code". How can I make it work with proxy? Any suggestions? define setProxy(#fnProxyWithCredentials) { set(#fnProxyWithCredentials, #fnProxyWithCredentials, "Global") clear list(%fnProxy) add list to list(%fnProxy, $list from text(#fnProxyWithCredentials, ":"), "Delete", "Global") set(#fnProxyUsername, $list item(%fnProxy, 2), "Global") set(#fnProxyPassword, $list item(%fnProxy, 3), "Global") set(#fnProxyWithPort, "{$list item(%fnProxy, 0)}:{$list
  15. Wow, this is awesome, thanks, zap! I didn't know about typing text to an element other than a textbox and using the word "DOWN". Is there a documentation for this?
×
×
  • Create New...