Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 10/18/15 in all areas

  1. Just a little post to demonstrate the power of ubot to newbies who are struugling to learn how to use it.. I had a job where I had to scrape over 300 urls, visit each url, scrape the name and description of each item and save this data to a file. The job would have taken 4-5 hours to do manually, but I created a ubot pgm that did the job in 20 minutes. Of course, it took an additional 20 minutes to ctreate the ubot pgm. After all these years, I am still in love with ubot!
    4 points
  2. V1.1.5.7 is Live Engine Updates: Selenium Engine Updated to 2.48.2. (Support for newer browser version) Chromedriver Updated to 2.20 (Stability Improvements) New Commands & Functions: Browser Version Function. Will return the version number of Browsers (FF, Chrome, Phantom JS) Move Mouse Command Send Keys Command Type Text Human Behavior (Random Pause) Optimizations: Changed "Wait for DOM ready command" Optimized Helper File Routine. So that different version do not influence each other. Starting with this version and upwards.
    1 point
  3. 1 point
  4. Ya the most important part is the Idea. It would be nice if it can be something completely different. Another thought would be to compile it and have the community here sell it, the $$ going into paying a developer to make a free community plugin or something like that. Just a thought. How about build a bot to search for alien life. http://www.planethunters.org/#/classify Build one that scrapes the light graphs and make it search for anomalies
    1 point
  5. I never tested it with FF portable. It's designed for a regular installed FF. The profile has to show up in the FF profile manager. You have to set it up there first. If you don't know how to do that, please google it. There are lot's of tutorials available. As soon as the profile is available in the FF profile manager, you can use the FF option in Ubot. Just specify the name of the profile. That's all you have to put into that field. Dan
    1 point
  6. This command will call itself until wurd is not found and track the number of times it s found: ui stat monitor("Count:",#count) comment("Counter to see how many times the command calls itself") set(#count,0,"Global") Recursive Command Name() define Recursive Command Name { comment("Some random loading code so that it can eventually exit") set(#num,$rand(1,1000),"Global") comment("24/1000 chance of not being \"wurd\"") if($comparison(#num,">=",25)) { then { load html("wurd") } else { load html($random text(10)) } }
    1 point
  7. New Update: Added an option to add custom css. Also included a link to an online button designer which makes it easy to copy and paste the css to the builder. I demonstrate in the video how you can easily use google fonts for the button text also. Please watch the video to see how it works:
    1 point
  8. New update: Made a change to the builder to make it easy to create ui's that can be changed on the fly(without the need for a user to click a tab). This can be very useful for changing the ui in order to prevent a user clicking or changing anything once the bot has started running. Can also be used to create a start-up or splash screen. How to set it up and how it works:
    1 point
×
×
  • Create New...