Jump to content
UBot Underground

danoctav

Fellow UBotter
  • Content Count

    90
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by danoctav

  1. Net framework 4.0.30319 Windows XP Professional x64 Edition 2003 and Win XP x32
  2. I'm not using ubotstudio anymore because of this browser.exe crashes (awesomium). On XP both x32 and x64 the browser crash like crazy from the loading ubotstudio or compiled bots. I have talking with support almost 2 weeks about this problem...but it seems there are no solutions. I have uninstalled and installed ubotstudio,.net framework,all plugins,but nothing stopped this crashes unfortunately and I was surprised how so few peoples complained about this problems. The ultimate solution received from support was to use a PC with other operating system: Windows 7 or 8 ,but seeing now this probl
  3. There is no fix provided yet... I have talk with support from 4-5 days ... The browser crash is also an very old problem. . I don't know why other not taled too much about this earlier,just now when is critical. I have talked with support for almost 1 year and nothing solved. Ok, at that time the brower crash occured after a number of steps in a loop (at least I was able to run bots to do some action around 40-50 steps multithreading/or not),but now the whatever compiled bot I run ,it crash the browser.... and when I open ubostudio the error with browser crash, appear instantly. I'm also
  4. Just bought and tested "Regex Builder" ... Cool piece of software and very easy to use !!! Thanks !
  5. Exactly the same problem for me (I want to make a screenshot too).... really frustrating... compiled bots or running bots inside ubotstudio are unusable for now. I hope the support to find a solution....
  6. Hey everyone, First I want to thanks all for support,and apologies that I'm not writing earlier, about the solution (busy now with mobile apps). At the time when I start to write about this problem, my facebook testing account was using the old style. After updating the FB account ,the bot posting perfect to groups (no duplicate message anymore)! Thanks again ! Dan
  7. Hello everyone ! I have just made a simple facebook group poster bot which upload a picture to group and post the message. I'm sure many of you does this kind of bot. My problem is that after posting to the fb group, the message appear 2 times ! Does someone know why? Any ideea would be appreciated ! Thanks !
  8. If your database is on hostgator,then this actions are required to connect to your database: 1. Go to "Database" in your cPanel and click "Remote MySQL" then add your computer IP on Remote Database Access Hosts -> Add Access Host If the IP is dynamic and some numbers not change from this IP, you can use a wildcard : "%" (like 92.123.%.%) . 2.On UbotStudio, this snippet work for connection to database: plugin command("DatabaseCommands.dll", "connect to database", "server=X.X.X.X;uid=userdb ; pwd=userpassword; database=yourdatabase; port=3306; pooling=false") { } * where X.X.X.X is IP
  9. Just use this 2 resources and you'll get quickly good skills to develop easy to medium bots: http://ubotstudio.com/tutorials http://wiki.ubotstudio.com/wiki/Main_Page
  10. "wait for element" is the the most precise,for sure.With this, is no need to guess the waiting time,just choose the last loading element !
  11. My name is Dan ... software developer.... Affiliate marketing , SEO, programming,developing bots,etc.
  12. I was having the same error,taking some free ico's from net and trying to compile bot.... "Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection" . I have found this cool site: icoconverter.com a simple online .ico image converter which take an image and convert it to a proper ICO file (good .ico for ubotstudio at compiling). I have used : 32 pixels with 32 bits (16.7M colors with alpha transparency) and after compiling with different .ico converted on this site from other pictures, everything wa
  13. 2 simple examples: Example nr. 1: ui stat monitor("Generate random numbers", #generaterandomnumbers) comment("---generating random numbers until press <Stop Script> button ------") ui button("Run") { set(#stop, $false, "Global") set(#i, 0, "Global") loop while($comparison(#stop, "!=", $true)) { set(#generaterandomnumbers, $rand(0, 100000), "Global") increment(#i) } } ui button("Stop Script") { set(#stop, $true, "Global") } Example nr. 2: ui stat monitor("Generate random numbers", #generaterandomnumbers) ui stat monitor("Generate random numbers", #g
  14. set(#i, 0, "Global") comment("---generating 2 lists with keyword and numbers-----") loop(10) { add item to list(%list1, "keyword{#i}", "Delete", "Global") add item to list(%list2, #i, "Delete", "Global") increment(#i) } comment("---- merge list --------") loop($list total(%list1)) { add item to list(%mergelist, "{$next list item(%list1)}:{$next list item(%list2)}", "Delete", "Global") } comment("---- saving list --------") save to file("{$special folder("Application")}\\mergelist.txt", %mergelist)
  15. set(#a, "<a href=\"admin.php?page=ManageSites&dashboard=NTUy\" id=\"sicknetwork_notes_552_url\">http://randomurl.net/</a>", "Global") set(#b, $find regular expression(#a, "(?<=dashboard=).*?(?=\")"), "Global") ui stat monitor("b:", #
  16. ui text box("Enter data:", #var) set(#var, $find regular expression(#var, "[-+]?\\b[0-9]+(\\.[0-9]+)?\\b"), "Global") if($comparison(#var, "!=", $nothing)) { then { set(#isnumber, "true", "Global") } else { set(#isnumber, "false", "Global") } } ui stat monitor("Number? ", #isnumber) where regex is for an integer or a floating point number, positive or negative . For a simple integer (with sign .... positive or negative) : ^[-+]?\d+$
  17. Yes,and sorting will reverse that list (particular case for the list given )
  18. The easiest method : add list to list(%reversed_list, $sort list(%mylist, "Ascending"), "Delete", "Global") where %mylist is your list with descending items.... but can be done in many,many ways....
  19. clear list(%mylist) set(#i, 1, "Global") ui stat monitor("Creating list with links:", %mylist) loop(10) { add item to list(%mylist, "link_{#i}", "Delete", "Global") increment(#i) wait(1) } set list position(%mylist, 0) loop($list total(%mylist)) { set(#position, $next list item(%mylist), "Global") wait(1) } ui stat monitor("Spamming :", #position) ui stat monitor("List position :", $list position(%mylist)) generating a list with 10 elements,looping through this links,showing the link from actual position and the list positions
  20. Solution nr 2: ui text box("Nr. of pages:", #nr_of_pages) clear list(%titles) set(#i, 1, "Global") loop(#nr_of_pages) { navigate("http://www.copyblogger.com/blog/page/{#i}/", "Wait") wait for browser event("Everything Loaded", "") wait(3) add list to list(%titles, $scrape attribute(<class="entry-title">, "innertext"), "Delete", "Global") increment(#i) } for this particular case,can be used also this... If you want to scrape all pages for titles,without to introduce a number, scrape the maximum number, <193> in this case ,as total nr_of_pages)
  21. Solution nr. 1: navigate("http://www.copyblogger.com/blog/", "Wait") wait for browser event("Everything Loaded", "") clear list(%titles) loop while($exists(<innertext="Next Page»">)) { add list to list(%titles, $scrape attribute(<class="entry-title">, "innertext"), "Delete", "Global") click(<innertext="Next Page»">, "Left Click", "No") wait for browser event("Everything Loaded", "") wait(3) } If exists Next Page» then click it until not exist....
×
×
  • Create New...