Jump to content
UBot Underground

Pete

Fellow UBotter
  • Content Count

    863
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by Pete

  1. Never used threadspawn myself, before testing it today Using Example 2: Thread Spawn With Tables from http://wiki.ubotstudio.com/wiki/Thread_Spawn Seems it can't count and will run 3 threads when the max concurrent is set to 2 As it runs 2 when it first starts i doubt its zero based Apart from that it seems fine, running just 2/3 threads is a very limited test so i put the whole thing into a loop for a hundred cycles The problem i see is the data being pulled within the thread spawns like this, its just a matter of time before two or more threads try and pull data at the same time, and the m
  2. clear list(%loc) add list to list(%loc,$list from text($find regular expression($page scrape("<div id=\"edit-reg\">","</div></div></div>"),"(?<=\\;\\\"\\>).*?(?=\\<\\/a\\>)"),$new line),"Delete","Global") Try that see if it works for you
  3. save to file("{$special folder("Desktop")}\\output.txt",%Aff Links)
  4. create table from file("C:\\Users\\triosi\\Documents\\UBot Studio\\data\\uk test.csv",&tableuk1) set(#row,0,"Global") loop($table total rows(&tableuk1)) { navigate("http://www.prnewswire.com/","Wait") wait for element(<id="mobile-menu-btn">,60,"Appear") click(<id="mobile-menu-btn">,"Left Click","No") wait for element(<innerhtml="Log in to Services">,60,"Appear") click(<innerhtml="Log in to Services">,"Left Click","No") wait for element(<innertext="Sign Up">,60,"Appear") click(<innertext="Sign Up">,"Left Click","No") wa
  5. navigate($find regular expression($next list item(%thePost),".*?(?=\\?utm_source)"),"Wait")
  6. Just a standard ubot browser crash Add this to the top of your script reset headers clear cookies set user agent("Chrome") allow images("No") allow css("No") allow popups("No") allow javascript("No") also you rely to much on "wait for browser event("Everything Loaded","")" wait for element(,"","Appear") is more reliable I tested this up to 1457 results with version 5.9.1 as i no longer subscribe to updates
  7. open ubot go to tools > options under the general tab set the browser to "Chrome 39" click OK then close ubot studio Restart ubot set user agent("Android") navigate("https://www.tumblr.com/login","Wait") wait for element(<create account button>,"","Appear") type text(<email field>,"email@temp.com","Standard") type text(<password field>,"pass","Standard") click(<class="signup_login_btn active">,"Left Click","No")
  8. Interesting you now have subscribed to updates to get what you have already payed for!
  9. set(#input,$trim("Not working on a twitter bot, but everyone is so familiar with the 140 character limit, I\'ll use it as an example. Lets say i have a text area and the user types in more than 140 characters (some random number each time), and i want to programmatically remove everything past the 140 char. mark."),"Global") set(#output,$find regular expression(#input,"^[\\s\\S]\{0,140\}"),"Global")
  10. If i knew what urls you needed it would be easyer navigate("https://www.youtube.com/channel/UCgkY2u5AprRNiIX4JHdIuHA/videos","Wait") clear list(%urls) add list to list(%urls,$list from text($scrape attribute(<href=w"/watch?v=*">,"fullhref"),$new line),"Delete","Global") loop while($comparison($list total(%urls),"> Greater than",0)) { navigate($list item(%urls,0),"Wait") wait for browser event("Everything Loaded",15) wait(10) remove from list(%urls,0) } maybe this is what you need
  11. try this set(#youtube,$find regular expression("<src=\"http://i.ytimg.com/vi/EcqodmiMOWM/default.jpg\">","(?<=ytimg\\.com\\/vi\\/).*?(?=\\/default\\.jpg)"),"Global") navigate("https://www.youtube.com/watch?v={#youtube}","Wait") wait for browser event("Everything Loaded","") wait(10)I think you don't see it in the debugger becouse you failed to click the quotation marks for the text in your regex
  12. Pete

    Ajax

    Take a look at http://www.w3schools.com/ajax/ajax_database.asp Is this database held on a pc or server?
  13. Pete

    Ajax

    I think most of us are just using SQLite ODBC Driver
  14. reset account("Any") set user agent("Chrome") navigate("https://www.reddit.com/register","Don\'t Wait") wait for element(<id="user_reg">,30,"Appear") wait for element(<id="rem_reg">,30,"Appear") run javascript("javascript:document.getElementById(\"user_reg\").setAttribute (\'value\', \'{$account data("Username")}\');") run javascript("javascript:document.getElementById(\"passwd_reg\").setAttribute (\'value\', \'{$account data("Password")}\');") run javascript("javascript:document.getElementById(\"passwd2_reg\").setAttribute (\'value\', \'{$account data("Password")}\');") ru
  15. Lol you can't ask that here, as any non positive reply would be deleted
  16. Lifetime updates lol it's a con always has been no one supports it,
  17. Try this change proxy("socks4://199.58.185.219:26968") wait(1)
  18. This is awesome, a cutting edge bimetal bot reminded me of ubot hot product but can get a little too wobbly at times
  19. ui text box("Link:",#vt_link) ui text box("How many pushes do you need?",#pushes) ui open file("Proxy List (.txt)",#proxy) add list to list(%proxys,$list from file(#proxy),"Delete","Global") set list position(%proxys,0) loop(#pushes) { clear cookies change proxy($next list item(%proxys)) navigate("http://www.whatsmyip.org/","Wait") wait(10) } works fine in ubot version 5.5.13 maybe reboot your pc
  20. add list to list(%proxys,$list from file(#proxy),"Delete","Global")
  21. clear list(%Output) add list to list(%Output,$list from text("http://abc.com/sample-permalink1/ http://abc.com/sample-permalink2/ http://abc.com/sample-permalink3/ http://abc.com/sample-permalink4/ http://abc.com/sample-permalink5/ http://abc.com/sample-permalink6/ http://abc.com/sample-permalink7/ http://abc.com/sample-permalink8/ http://abc.com/sample-permalink9/ http://abc.net/sample-permalink1/ http://abc.net/sample-permalink2/ http://abc.net/sample-permalink3/ http://abc.net/sample-permalink4/ http://abc.net/sample-permalink5/ http://abc.net/sample-permalink6/ http://abc.n
  22. or any news on the release? check the bug tracker
  23. http://screencast.com/t/7Nv5YcMtc8kk Aymen made a pdf file some time back (Http Post Plugin Docs.pdf) this is what it says about the function this function is used to parse html tags from a html document to get the value you need html document : the source html text tag name :the tag name you want to scrape values from attribute name : an attribute name that exists in the targeted tag name attribute value : the attribute value of the targeted attribute name attribute to get : the attribute value to get as a result Basically this function will scrape an attribute value from a given tag name w
  24. After version 5.5.13 some commands where added to the bot bank menu and I'm pretty sure you can't use them if you unsubscribe for any reason.
×
×
  • Create New...