Jump to content
UBot Underground

bestmacros

Fellow UBotter
  • Content Count

    415
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by bestmacros

  1. so what is your question exactly? what is the purpose of your post?
  2. https://wiki.ubotstudio.com/wiki/Set_Table_Cell To save a table to a CSV files you would just use the Table name. save to file("c:\\qqq.csv",&your_table)
  3. check for commas - CSV is the Comma separated value file - it can split content if you try to save the text with commas
  4. I don't see any email from you. Try to send forum message or use Contact us form on my site
  5. You can try this product: http://bestmacros.com/traffic-generator-bot/ or this if you need google traffic: http://bestmacros.com/gtraffic-bot/
  6. that is normal - google does not show all results it finds - only top 30-50 pages
  7. try this: send email("recipient's email here", "Hello", "Plain Text", "So how\'s it going? I got error: {#error}", "", "", "")
  8. I've encountered same issue when building free bitcoin bot and I've found the solution by using javascript toFixed() method here is example: set(#current bet,0.00000001,"Global") set(#current bet,$eval("{#current bet}*2"),"Global") set(#current bet,$eval("var x={#current bet}; x=x.toFixed(8); x;"),"Global")have fun!
  9. If you don't care about spaces you can also replace spaces with nothing and compare the text after changing it to low case as stated by HelloInsomnia - this way you will compare two sentences in format of "Hello,howareyou?Whatisyourname?" and it will be same even if you scrape some additional spaces in the middle.
  10. try regular expression (?<=\<CATEGORYTEXT>).*(?=Polo tričká<\/CATEGORYTEXT>)
  11. The real path to desktop is C:\Users\<USERNAME>\Desktop maybe your USERNAME on work pc appear with some special characters or on non-supported language and this is what brakes the function
  12. Traffic generator: http://bestmacros.com/traffic-generator-bot/
  13. there is nothing you can do - ubot internal browser does not work correctly on LinkedIn.
  14. http://network.ubotstudio.com/forum/index.php/topic/21272-unable-to-interact-with-linkedin-page/?hl=linkedin
  15. yes, you can do this with Ubot - for vpn switch you may need vpn client with command line support. standard license should be ok.
  16. loop while($comparison($list total(%createdAccounts),"< Less than",#loops)) { loop while($comparison(#usedThreads,">= Greater than or equal to",#threadCount)) { wait(1) } reset account("Any") add item to list(%accounts,"{$account data("Username")}:{$account data("Password")}","Don\'t Delete","Global") increment(#usedThreads) clear list(%account) add list to list(%account,$list from text($next list item(%accounts),":"),"Delete","Global") CreateAccount($list item(%account,0), $list item(%account,1)) wait(0.1) } Simple solution would be replacing
  17. your code example is lacking major functionality which need to be handled on multi-threading level - it does not matter what your code does: creates accounts or send posts on Facebook - if you don't track and handle success results - your code will not achieve what it need to achieve.
  18. Ok, I see that you open the threads on-the-go and this will guarantee that account creation process will run exact amount of times, but still I don't understand why are you trying to deny obvious thing, which I already mention 2 times before - YOUR CODE DOES NOT count and control number of real created accounts, so if the process will fail you will create much less accounts even while you will run proper number of tries to create them. In real life you would want to track total number of createdAccounts list which you don't do in your code at all. Hope this will help you to understand...
  19. And what will happen if I set 3 accounts to create but set 10 threads to use? Like I previously wrote your code does not count and control number of already created accounts.
  20. good example, but there is little issue with your code - when you use loop parameter as number of accounts to create, it will not work as expected, as your code will create number of accounts equal to number of loops multiply by number of threads, meaning if you set 10 accounts to create in UI and set 10 threads to use - your code will actually create 10*10=100 accounts instead of 10. To prevent this issue you need to limit the code to stop creating account if requested amount of accounts is already created (by using while loop or checking number of created accounts)
  21. I know that exbrowser will work, but I'm searching solution related to internal ubot browser .
  22. even when I can find the element - the click does nothing - it just does not response as well as it can't get any data from the page.
  23. using mobile is not an option because they just redirect to download mobile app page
  24. I'm unable to interact with new Linkedin UI inside Ubot 5: can't select any element can't get current url using $url can't scrape any data from page . Manually clicking inside internal browser also does nothing. I've tried different useragents and both chrome 49 and chrome 21 but no luck. Also tried disable javascript/css/flash/images but it also does not help. It looks like the internal browser just blocked. Here is video with the problem recorded: https://www.screencast.com/t/ghpAjw8wW4 Any ideas what can fix it?
×
×
  • Create New...