Jump to content
UBot Underground

-Illuminati-

Members
  • Content Count

    48
  • Joined

  • Last visited

Everything posted by -Illuminati-

  1. It's bad code to run a loop to see if the $exists element is working correctly?
  2. 2nd time I have done this just to check for something, not realizing I should of put a stop script command in there... If you don't know what's going on here, I ran the node which would be an infinite loop since in the current browser, the element in fact $exists, so I basically can't do anything else, no saving, no modifying ... You get it though. http://puu.sh/j5fnC/82fe503f24.png
  3. Ok so the subject makes no sense probably, but the bot I have created is suppose to visit:http://www.ebesucher.com/surfbar/temp And then once it is there, it changes to a URL like here: http://pastebin.com/eWjk7C4u An extremely long random character URL. But for some reason, in UBot it doesn't go to that, it just constant refreshes on the website trying to achieve whatever it's doing. During the transition, you can quickly see the URL go to "http://www.ebesucher.com/index.php?link=surfbarlogin&goto=ajaxsurfbar&username=tempaccount" but then goes back to the URL, and continues to make
  4. So I am trying to solve a captcha in UBot, and in order to continue with the captcha, you must strictly press "Play". The captcha is SolveMedia Is there anyway in UBot I can get it to click that play button specifically? Cause when I choose the element, it only selects the entire box. This is the element given when I use element to click: When I open the element editor, this is what I am given: Trying to finish a project, and that single captcha type alone is stopping the whole process.
  5. What's with people re installing there OS because bots wont run? I assume you at least rebooted the VPS/Computer right? Whenever I had an issue like that, I generally just needed to close any other brower.exe's and problem was solved.
  6. So I am trying to get UBot to solve a captcha for me after X amount of rounds completed, but when the captcha appears, it ignores it and keeps running the bot. I thought maybe my code was going to fast that the pop up was not being detected, so I added a wait for 3 seconds before and after just to ensure. When I first started creating the bot, it worked just fine, but I don't know what I changed to cause it to not work. I have tried different things for $comparison such as else if($exists(<id="show-captcha-popup">)) { alert("Going to solve the captcha!") click(<id="adcopy-p
  7. Well, the person who I was creating this thing for got upset about it and said don't add it. But thanks for the help anyways.
  8. if($comparison(#usercaptcha,"=",$true)) { then { alert("You need to type in a captcha! (Press Green Arrow above to keep the bot running.") pause script } else { alert("Captcha is disabled.") click(<id="adcopy-puzzle-image">,"Left Click","No") wait(5) type text(<name="adcopy_response">,$solve captcha(<id="adcopy-puzzle-image">),"Standard") click(<value="Submit">,"Left Click","No") } } That is if statement for the UI checkbox. I checked the variable of the checkbox and it is exact
  9. Hey Dan, I am a bit confused, replace loop with loop while? If I end up doing that, how should I combat the issue of thread count? If it makes it easier, here is the full code to the project I have started. set(#threadsactive, 0, "Global") ui text box("eBesucher Surfbar URL", #surfurl) ui drop down("Set Threads", "1,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100", #threadcount) ui open file("Open Proxy List", #proxylist) ui open file("Open User Agent List", #useragentlist) add list to list(%proxylist, $list from file(#proxylist), "Delete", "Global") add list to list(%useragentl
  10. So when I followed one of Seth's videos on youtube for setting up threads, and well, when the bot runs the thread, it runs the commands, closes the thread, and starts a new one. How can I get it to keep the thread open and running? I tried wait for browser elements to load, and wait for 99999999 seconds, but that only allows 1 thread to run. Here is my code: loop(#threadcount) { in new browser { clear cookies set visibility("Visible") allow css("No") allow images("No") change proxy($list item(%proxylist, #proxyposition)) set user age
  11. Kind of shocked they took it out. Does anyone have a work around. IMO the software becomes useless for quite a few websites mainly because those 2 factors are key in security. Any suggestions?
  12. I guess I have got it to work with the following code: loop while($exists(<innertext="Could not create a connection to the proxy server.">)) { increment(#proxyposition) change proxy($list item(%proxy,#proxyposition)) navigate("http://whatismyip.com/","Wait") wait for browser event("Everything Loaded","") }
  13. Yeah, I have searched a bit, my problem is getting the code to loop again when the proxy is bad. I compared mine to others, and its very similar, so I don't see what I am doing incorrectly.
  14. if($exists(<innertext="Could not create a connection to the proxy server.">)) { then { loop while($exists(<innertext="Could not create a connection to the proxy server.">)) { alert("Changing Proxy") increment(#proxyposition) change proxy($list item(%proxy,#proxyposition)) navigate("http://whatismyip.com/","Wait") wait(5) } } else { } } That is my code for the entire if statement containing the loop.
  15. So my end goal is to make it visit http://whatismyip.com/ and if it can't get to the webpage, the proxy needs to be changed with a loop while that looks for a specific text given by the browser that $exists. When I set it to that text, and that text is on the web page, it skips the rest of the loop and goes on. I don't think my words are making very much sense, so here is a picture to describe what I mean: http://puu.sh/iDbke/546f1bd4e2.jpg I intentionally placed a fake proxy for the first line so I can combat the issue. Post #7 contains my solution.
  16. I do not, but that sounds like it would work. Only issue is increment accepts variables only. EDIT: So I thought more about what I said, and how I am sure I can find a way to use your solution to fix my problem. Anyways, I created 5 variables all set at 0 at the beginning of the script, and once the loop starts, each field that needs a specific text from file will use $list item and will use $list position that is the variable I created earlier which starts at 0. Then at the end it'll increment the variable, so the next loop is now on 1. Thanks a lot itexspert, I can now use this
  17. Hey Ubotters, currently right now I am having trouble with my lists & loop. When my bot runs, it adds to list the correct information as I need it, then the loop starts. This is where my problem starts. It should simply fill out the account register page with the information given, then save that information in a text file as field:field:field:field. Scenario 1: Now when I run the bot, it will use $next item, so that way in the loop, it moves onto the next list item. But as where a field needs to be entered twice, I will just use $list item for the 2nd field. As I watch the bot run
  18. Has anyone seen this done in UBot? I am attempting to make a Percent Completed UI stat that basically gives how much percent of the account logins have been created. It would use $list total to determine how many logins there are, and I thought maybe I could use increment some how, but I guess not because it only accepts variables. Anyone know how this can be accomplished? This is not 100% needed for what I am making, I am just wanting to learn more about UBot and test functions as I create my stuff.
  19. Well, I would follow your suggestion, but now randomly my UI does not appear when I run the bot now.........
  20. Hey everyone, so I am trying to create a bot, and my problem is how far the UI elements space apart whenever I had a log view to my bot. Here is a photo with log view added (log view is all the way to the right on the scale): http://puu.sh/iAiCB/c5431f4ba2.png Here is a photo without log view: http://puu.sh/iAiI6/b611ea8157.png Is there a command I can use, or a video tutorial to follow on how to properly set this up? Thanks.
  21. The first 2 URLs are the same, the 3rd should of been straight http://google.com/ Since I fixed that URL, it works just fine now. Thanks for the help Dan.
  22. Thanks for the information. I've followed what you have instructed and was able to fix #2 with success. As for #1, the same issue still occurs, even adding the wait for browser to load element. Could you take 1 more look to see what I might be doing wrong? The text file is a sample file for the checker. Link Checker.ubot Test Run.txt
  23. So I began trying to make a simple link checker in UBot, that would see if my clients Amazon review URL was either removed, or still up. I think I did pretty good for a newbie to get as far as I did with looking up commands and such. So my issue is, when the link checker is checking the list of URLs, I have it display how many URLs are "dead" or "alive". But whenever the bot runs, it says they are all "alive" although, the links aren't actually up. I used an if statement to increment my ui stat monitor variable if it contains X. And if it doesn't contain X, it should THEN increment variable
×
×
  • Create New...