Jump to content
UBot Underground

crazyflx

Moderators
  • Content Count

    279
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by crazyflx

  1. EDIT: I originally had this posted on another forum (I still do actually), but then realized that the most appropriate place for it, would actually be here. I had this made for me BECAUSE of my constant use of uBot and I figure that almost everybody else using uBot would be able to make good use of this as well. I had this software made because I have tons of bots (uBots) running all day every day making accounts at tons of different sites. Thing is, uBot is a HUGE pain to use for verifying those accounts…so I had a freelancer make me a REAL program to do it. It is a multi-threaded
  2. I too clear and reload...I always feel safer that way. I've also made some pretty giant bots using this method, and I didn't seem to have any performance issues.
  3. Try this: http://img718.imageshack.us/img718/7444/proxycommand.jpg Obviously, the credentials will have to correspond to the selected proxy. You mentioned that you currently have your file containing your proxies in this format: ip: port: username: password Go ahead and check this thread out (it will show you how to separate that input file into individual variables for user separately): http://ubotstudio.com/forum/index.php?/topic/3012-separating-lines-or-cells-of-data-for-use-individually/ After that is done, you'll have this: List Item 0 = IP List Item 1 = Port List Item 2 = Use
  4. Not sure if this is the problem, but it is always worth a look as I made the following (very silly) mistake: alert('Please read this entire alert. If you're going to insert alerts, don't make this error') The above alert will not fire. Why? Well, because it has apostrophes in the words "you're" and "don't". There can only be two apostrophes for the "alert" to "fire", those being the ones before and after the text you want to appear. I made that mistake and couldn't for the life of me figure out why my alerts weren't firing...then, I noticed...and felt very very silly.
  5. If the "set to 0" were inside of the loop, then it would set it to 0 every time it ran. But because it is outside of the loop, it is first set to 0, then the loop begins so it will run through the whole list of usernames. It won't be set to 0 until the bot has stopped and restarted.
  6. Take a look at this and see if it helps get you going. USERNAME.ubot
  7. To give an appropriate example, we'd need to know what kind of proxies you planned on using (public or private, and if private do they require authentication).
  8. That "delay 30 seconds" was actually supposed to be a "stop script" command, as it was only set up to navigate to one of the listings. I basically just threw it together as an example. I've attached a fully functional version to this post, and there is a picture below of the changes. Here is a basic rundown of what the bot is doing: "Choose by attribute" -> That is selecting only the listing titles of the search results. "Scrape Page" -> This was actually supposed to be "scrape chosen attribute", but I ended up just using a "scrape page" command because I realized I needed to
  9. It is probably because you don't have enough cells. That example currently tries to change the text field at "wordcounttool.com" to the content that is in the 3rd cell...so if you don't have a 3rd cell, it is going to throw an error. Try changing the 2 in the following node to a number that is relevant to the number of cells in your input file (the instructions are also on the picture below): http://img199.imageshack.us/img199/3057/nodetochange.gif
  10. Do the following: "Create Account" -> Male/Female Set -> #username -> Account Constants -> $Username Next time you want to insert the username that you want to use throughout your whole bot in any script, instead of inserting $username, you'll insert: #username
  11. Check this out: http://ubotstudio.com/forum/index.php?/topic/3012-separating-lines-or-cells-of-data-for-use-individually/
  12. What I'm about to say has only worked for my compiled bots, and only works when your .txt or .csv file is stored in the same folder (or subfolder) as your compiled .exe file. If you're looking to have the values loaded by uBot without you having to find the file every time, you could run this command: add to list list from file /accounts/accounts.csv It literally should look just like that. When you leave out everything from the front of the "/accounts/accounts.csv" file, the compiled bot just assumes that the file it is looking for is stored in the same folder as the .exe file itself.
  13. I just took a look, and I'm not sure what it is you're trying to do. After searching "TV", I clicked on a listing. It didn't take me to any website, it just took me to a more comprehensive listing of the link I clicked on. Here is an example. The following was one of my search results: Tanya Electronics 1 review Location - Y-348,C/2,Sec-12, Subzi Mandi, Noida, Noida - 201301 Call - +(91)-(11)-66361349 Also See - Tv Dealers, AC Dealers-LG, AC Repair & Services After clicking it, this is what it showed me: Mr Sunil Chauhan +(91)-(11)-66361349 +(91)-9310084
  14. Well, you could do one of two things. Option A: Copy the entire bot I've attached, step by step, into it's own sub (named beatcaptcha or something) inside of your existing bot. You would delete the "choose by attribute" node for the captcha image and "choose by attribute" for the solved captcha field however. Then set up your bot like this: your bot is doing something your bot is doing something choose by attribute -> captcha image run sub "beatcaptcha" then choose by attribute -> solved captcha field change chosen attribute -> account constants -> $captcha Option B:
  15. I can't replicate this error. Try the bot I've uploaded see if it still happens. wait for command.ubot
  16. After looking this over pretty extensively, I'm afraid I couldn't come up with a way that you could make one script and have it work for all the sites. The good news is, that uBot doesn't have any problem filling these fields. You just have to make an individual script or sub for each site.
  17. Alright, the first "send keys chosen" is to activate the field so that the dropdown appears. If you just use "send keys field chosen" alone, nothing happens (no dropdown). Also, there will be no dropdown if you use "change chosen attributes". So, it goes like this: send keys chosen -> s (this activates the field so the dropdown appears) change chosen attributes -> $nothing (this empties the field) send keys field chosen -> "something " (it must be followed by two spaces. We use send keys field chosen here because google is actually recognizing each "keystroke", but with a
  18. I could probably be of more help if you gave me two (or more) different sites to check out. That way I could compare the two and see what common ground they have (if any).
  19. The "Wait Until Finished" command can sometimes actually be a pain. The reason for this is because some sites are using AJAX to load new content for you after hitting the submit button. The "Wait Until Finished" command waits for a newly loaded page to finish loading, so if after hitting the submit button, it doesn't navigate to a new page, the bot is just going to assume that the page has finished loading and move on. What you can do is a "Wait For" command, and have it wait for a bit of chosen text to appear on the screen AFTER the submit button is pushed. So, if after pushing submit,
  20. If it is literally only one word on the line, you could do this: set-> list postion -> file.txt -> 0 if->search page (bear) then set #word to match from scraped site TO scraped highlighted word loop list total -> file.txt ---set ---#word to match from file.txt ---next list item -> file.txt ---if ---evaluate ---#word to match from scraped site = #word to match from file.txt ---do something end loop
  21. You'll need to change the "save to file" locations to something relevant on your computer before running.
  22. Here you go (if you have questions, let me know): google suggestion scraper.ubot
×
×
  • Create New...