Jump to content
UBot Underground

VentureOnline

Fellow UBotter
  • Content Count

    385
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by VentureOnline

  1. This works perfectly if you have the dev edition and use the UI HTML panel. If you don't then you could use this type of workaround which will work pretty well. ui drop down("States", "Select,New York,New Jersey", #States) ui button("Select City") { if($contains(#States, "New York")) { then { load html("<select variable=\"#Cities\" fillwith=\"value\" width=\"220px\"><option>New York City</option><option>Albany</option><option>Syracuse</option></select>") } else { } } if($contains(#States, "New Je
  2. If creating the scheduler in Ubot was as easy as Senuke then they'd really be on to something.
  3. So guys ive been racking my brain for a way to have a decent scheduler in my bots. I am getting ready to release a really powerful web 2.0 bot and without a scheduler I'll have to reduce costs since thats becoming a pretty regular feature in bots like this these days. So here is what ive come up with. I haven't had a chance to test it yet but I am curious to see if you guys think this will work and have any suggestions to add. - User chooses to run the process for a time period of 1-30 days. This process also includes a choice on how many articles will be submitted in that time period. -
  4. Yea I would love some samples also if you could. Also let me know what type of prices you are thinking.
  5. If you want to select multiple items in the UI area you could do it by setting up an add button also in the UI area which ads the selected item to a list. You can then have those selections viewable by setting the list to a variable thats attached to a UI stat monitor, so the selections will appear as the variable is updated. Now once they have all options selected and they execute the actual process just have the list clear after the process is run and the visual stat monitor will clear.
  6. Hey guys I am trying to have my List Box/Dropdown Update in the UI HTML Panel without having to restart the bot. I have a file Set to the #Sites variable that is ever changing as the bot runs but its setup as: <option>www.something.com</option> <option>www.stuff.com</option> <option>www.example.com</option> Now I tried this which actually worked. It updated the list but then I couldn't select a variable. The list looked great and would update when the variable did but there was no way to use it. <select variable="#Sites" fillwith="innerhtml" style
  7. Are there any tutorials that discuss threading besides the 1 video going over the basics? I can't find any in depth guides on working with threading and it can be really confusing. I would love to learn how to work with threading when you are not repeating the same task. To give a basic example, i'd love to learn how to multithread account creation at different websites. If I wanted to create accounts at. wordpress.com tumblr livejournal multiply insanejournal And I wanted the user to be able to select the amount of threads, say 3 threads with the threads rotating the different services t
  8. Just for anybody who is looking at this thread in the future. If you get an error after changing the icon on the bot its mostly likely because you saved the file as a different name then what it was originally. It has to be the same name.
  9. Im a bit confused. What does the "search for" do? I am just looking to be able to enter the keywords in the text box and have google search the 1st keyword + each footprint in the footprint.txt file and use the amount of threads specified. Then do the same for each subsequent keyword entered. So if the I did 2 keywords "dog training" + "dog collars" and specified 3 threads. The bot would do. thread 1 - dog training footprint1 thread 2 - dog training footprint2 thread 3 - dog training footprint3 When they finished thread 1 - dog training footprint4 thread 2 - dog training footprint5 thre
  10. Sorry for all the questions lately guys but the answers have helped me learn so much. So I am trying to get this bot to scrape Google and cycle each keyword entered into the text box through the list of footprints in footprints.txt. Now for some reason my main loop which is reading the %keywordlist total is opening extra browsers/threads if I place more then 1 keyword in. So if I put one keyword in the list it will all work fine. But when I put 2 keywords it'll open 2 browsers and if I set it to 2 threads there will then be 4 browsers. From what I can see its not finishing the inside loop befo
  11. So this is actually possible through css? I guess I'll fool around with it but I just don't see how the ui panel could move objects that aren't really defined with any name or anything. If anyone has any ideas please chime in because it would be very cool to be able to do this.
  12. I saw in the free Ubot Proxy Scraper bot that the developer was able to move the Run/Pause/Stop buttons as well as get rid of the top menu. How do I go about doing this. Im assuming its CSS. Can anybody give me an idea of what needs to be done. Thanks!
  13. I realized my problem was that I had the comma separated values on separate lines rather then back to back.
  14. So there is no way to have an external browser login into wordpress through Ubot?
  15. I have seen talk about the "in IE Window" Command in past forum posts but I can't find the command anywhere. I am looking to have the bot take Wordpress login info from a table and have it log in in a separate Internet Explorer window so that its easier to work with. The ubot browser is difficult to use when I want to open a lot of tabs while I work. Ive tried using the shell command but I don't think the shell command can tell Internet Explorer to fill in the username/password and click sign in. Can anyone tell me how to go about doing this or where I can find the "in IE Window" Command. Any
  16. Hey guys I am attempting to find the row in a table that contains the text from the drop down menu. I am almost positive this is how it is done but for some reason the first item in the drop down works fine but each subsequent item i get an error saying "the cell I've requested is outside the range of the table". My table though has many rows and columns so I don't get how incrementing past "0" would make it out of bounds. Any help would be much appreciated. ui drop down("Sites", $read file("\\\\psf\\Home\\Desktop\\TestBot\\WordpressBot\\Sites.txt"), #SITES) ui button("Login") { clear ta
×
×
  • Create New...