Jump to content
UBot Underground

iDollarsteam

Fellow UBotter
  • Content Count

    141
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by iDollarsteam

  1. "As of October 2011, 59.1% of Orkut's users are from Brazil, followed by India with 27.1% and Japan with 6.7%" ... I prefer the US market
  2. ok... 1 - First open the video page after you commented 2 - scrape the username for every comment on the page in the order that they are on the page 3 - loop the resulting list, element by element and compare every element with the username that you want to find 4 - when you find it you set a variable that will hold the position of that username in the list 5 - now came the vote part: all the vote buttons are the same but they have offset numbers - click the button with the offset number that is = with the variable value you obtained in step 4 study the offset position for every thumbs up butt
  3. See TJ's licensing solution and you'll find what you need!
  4. @ Blumi - If is not needed by you, why did you started the thread? You wanted a fancy way to write in the browser? ... the only thing that I know this to be useful is to trick certain web sites that you are a human and not a bot, so I explained why your solution is not good to really emulate a human and I also directed you in the right direction, also TJ got it one step forward and give you a code for my explanation but not the entire solution (as a command that you can implement in any project you want) ... So, what more do you need? If you experiment with TJ code and with windows commands i
  5. ) Blumi your "prayer" has been answered: TJ just give you a more detailed version of my "tip" ... is up to you to take it to "the next level", anyway, this is the basic way you should do it to pass the javascript "sensors" from the sites that watch for human behavior
  6. ) I have give you the "tips" ... some codes I will not post here I do youtube automation using ubot since almost a year ago and I have made (among many other things that are "impossible" to make with ubot) an account creator that is still working like a charm 8 month later just by emulating real human behavior but I experimented for it a month full time... as far as I know it is the only bot of its kind so I can't give solutions to youtube free ... here or anywhere else
  7. If you use this to "fool" google to think that you are human this will not work! "type text" command is not using a key to type, is just using "paste" to paste the word in to the textbox so even if you use delay you just "paste" the letter in the textbox and google knows it you need to send real keystrokes... little tip: use lists, loops and "Keyboard event" ... but for google at least they track the mouse movement also ... so use tab to go from textbox to textbox or use "move mouse" and "mouse click" also use the same coordinates for those two
  8. use a loop and for each iteration get a new email:password from the emails list and feed it to the "verify email" process ... this is the main reason for this command, no one need such a command to verify one email It's purpose is to be able to verify lists of email accounts very fast ... In fact it is not "very" fast but it is ok... in my projects I ended up using it in 50% of the cases... for the other 50% I use a new thread to verify the email by loading it in a new browser and searching for the email that I want... one of the advantages is that I can set the thread to stay open till I
  9. if you want to avoid the use of a tmp file you can use this code to make list items from every line of txt in a variable: add list to list(%urlList, $list from text(#Result_from_function, $new line), "Delete", "Global") and by the way, if you have multiple instances of an item on page and you want to keep them, when you create the list don't forget to change the "delete duplicates" setting
  10. I have looked over your code ... I think that this is what it should look like so you could use it: set(#siteurl, "some url", "Global") set(#basedomain, "some domain", "Global") clear list(%urlList) set(#Result_from_function, $GetAllUrls(#siteurl, #basedomain), "Global") save to file("{$special folder("Application")}\\scrapeTMP", #Result_from_function) add list to list(%urlList, $list from file("{$special folder("Application")}\\scrapeTMP"), "Delete", "Global") define $GetAllUrls(#siteurl, #basedomain) { set(#siteurl, #siteurl, "Local") set(#basedomain, #basedomain, "Local") navi
  11. as far as I know the "return" must return a variable not a list :)then you use that variable to make a list (if you have multiple lines in the variable you better write the variable in a temp file then create the list from that file in this way you will have elements of the list made from every line in the file, if you just add the variable to the list you will have one list element with all the lines in it not separate elements) ... This "solution" is just from looking very fast at your code, I did not tested it so it may not be what you need
  12. usually no, many of the javascript functions are not on the page, they are just called from the page, so you can't execute them in ubot ... if you know exactly how those functions work I think you can write your own javascript code and make ubot run the scripts scraped from the page and get the parameters you need... Usually those javascript codes will also drop cookies on your computer so it will not be easy, Also the javascript can implement other security measures, for example on youtube, when loading a video page, the form for commenting will have a delay of 1 second before loading (using
  13. he will find someone and after a week or two he will post here again asking for another "guru" that work full time for almost nothing )
  14. Knowing this kind of info will put money in your pocket ... no one will share this info, if they do they will loose a market for their bots
  15. ) no offense but this is not "getafreelancer" ... Usually this community is made from Internet Marketers that know the power of this software and respect their time and knowledge ... May be if you offer 1000+ USD you can get a decent UBOT expert to spend so much time on your projects (and this only for the fact that you offer a long term contract)
  16. no, as far as I know you can't get anything generated with javascript, for that you need to load the page in the browser so the javascript code can be executed then some parameters generated by that java code can be scraped For example, the javascript parameters generated on youtube pages ...
  17. if this kind of bot hit the market in 2 weeks google's team will see exactly how it can outsmart their protection and update their system ... Youtube and all google's products are very hard to maintain ( A LOT of updates) so at some point the trouble to make constant updates is bigger then the remuneration you can get from selling the bots... still ...there are some bots on high demand
  18. a bot that is making thousands of quality views on youtube very fast (not a bot that is loading a movie in few threads and really watch it) is not possible in Ubot right now and it is very very difficult to make in any other programming environment (.Net related or any other) it require complete control over cookies, http requests and also running (in fact emulating) the javascript scripts from the page ... there are A LOT of parameters that changes when the video is played and those parameters determine the validity of the view ... so you can make such a bot ... only if you manage to decode
  19. sell you what? CURL is free ... if you want a http request youtube bot... that is another thing
  20. it is a library of functions that you can use in php but it is also in executable version that you can automate with ubot ... google it and get on their site, you can learn everything from there
×
×
  • Create New...