Jump to content
UBot Underground

arunner26

Fellow UBotter
  • Content Count

    283
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by arunner26

  1. itexspert, Check out the script below as one solution to grab those phone numbers not starting with 9: Don't forget to change the URL below to the full URL (milanuncios.com/ofertas-de-empleo) ui stat monitor("Numbers To Save:", %numbers) navigate("http://www.milanuncios.com/ofertas-de-empleo/", "Wait") wait for browser event("Everything Loaded", "") wait for browser event("DOM Ready", "") set(#number, $nothing, "Global") set(#loop, 5, "Global") set(#loopindex, 0, "Global") clear list(%numbers) set(#ContinueLooking, 1, "Global") loop while($comparison(#ContinueLooking, "=", 1)) { click($e
  2. itexspert,Can't really try it because you don't show the full URL. navigate("http://www.milanunci...rtas-de-empleo/","Wait")
  3. itexspert, The code below tells UBOT you want to loop zero times. set(#loop,0,"Global") loop(#loop) {
  4. itexspert,Thanks much for the information on VPN. Now I get the idea of how to use VPN. I liked your video and the product looks great too.
  5. itexspert,You said while "HMA is Running". Do they give you a program that you run outside UBOT to make the VPN connection? Can you change your IP whenever you want? Just trying to figure out how you use VPN with UBOT.
  6. You would need to make a change to add set proxy credentials command: change proxy("{#AccountsProxyIP}:{#AccountsProxyPort}") wait(1) set proxy credentials(#AccountsProxyUsername, #AccountsPassword) wait(1)
  7. The format of the file I used for the sample is: NOTE: Change the file input location before you use. INPUT FILE FORMAT: IP:PORT IP:PORT:USERNAME:PASSWORD (Note: My code loads username/password but does not use them) The separator in the text file is colon.
  8. What I do is create a CSV file. Each row of the CSV file has all the information needed to use a proxy and also on that row is all the information needed to login to an account (such as a Yahoo Answers account, etc.) So I loop through that CSV file and put the proxy in place, then login to the account and do the work and then logout and repeat with the next row from the CSV file. Here is a link to a post where I show looping thru the CSV file to check the proxies. What you would add to that code is logging into an account and doing some work after checking the proxy. http://www.ubotstudio.
  9. deliter,Nice post, thanks for pointing out the videos.
  10. itexspert,When I went to download the file you attached I found the name is actually details.csv.txt. So Excel sees it as a text file and not a csv. If your file system has the file extension HIDDEN it is easy for this to happen and you not know it.
  11. Wiri,A dynamic IP means that the ISP can change your IP address at will without any notice. This is opposed to a fixed IP that does not change. My ISP uses dynamic IPs and generally my IP changes about once every six months or so. So if you have a process that hammers a site with dozens and/or hundreds of requests and you don't use proxies they will all be coming from your IP (which probably won't change during the run). The best technique I have used is to associate a proxy address to an account. That way when the account logs in, it comes from the same location every time like a person w
  12. darryl561,Thanks for adding the ability to edit elements. It seems like you have come a long way since you wrote the comment above. Good for you!! Rock On!!
  13. rkinks35,Yes, private proxies are the same an as ONE IP address. I'm not sure exactly how VPNs are used, maybe someone could explain that to us both. I don't make large numbers of accounts. I have been making BOTs where I have 5 to 10 accounts and each account always is assigned to the same proxy. So I login to a site with an account using its particular proxy, do whatever I came to do, log out, and then login wth the next account. etc. I'm not sure exactly what people are using huge numbers of accounts for unless they are selling them to other people.
  14. stacy, You just click on the box you want to type text into and drag it to the command area of UBOT Studio and release the mouse click and it will drop a type text command into the program.. I don't know about weebly but I have noticed that that it does not work on some sites. I had to set the user agent to safari to get some of the commands working on yahoo answers.
  15. Thanks for clearing that up. Dan had asked the question "Can it edit elements?" as the first question and you had said no. So that is why I have been wondering ever since. "Edit the elements" must mean something else. By the way, when one buys the product, do you have a training video that is included with it?
  16. hi darryl561, I have been wondering for a long time, if you build a UI with UI Builder and save it, can you come back later and open the UI back up and make changes and additions to it?
  17. rkinks35,I wouldn't use free shared proxies from HMA at this time. Everyone knows them now and the free proxy IPs don't work very well anymore. If you are serious about accomplishing something, I would suggest paid private proxies these days.
  18. ewideweb,Thanks for the heads up on how to use the custom built-in UI.
  19. I'm pretty sure it is possible on HOTMAIL since SUPERHAC is doing it. You might want to click on SUPERHAC in my signature line and read all about that program and watch the video to see all it can do. It may give you some ideas as to what is possible for your program.
  20. cmmorris1,Your question raises another interesting question. How do GoDaddy and NameCheap determine domain availability? You might want to research that question and if possible, do what they do.
  21. Here is where you can find version history: http://tracker.ubotstudio.com/projects/ubot-5/roadmap?utf8=%E2%9C%93&tracker_ids[]=1&tracker_ids[]=2&completed=1
  22. In addition to making my UBOT commands dynamically adjusted by changing elements in the HTML, I have had a lot of luck using the user agent - SAFARI. It seems like the web page developers have to simplify the code for Safari.
×
×
  • Create New...