Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 08/27/13 in all areas

  1. I'm sharing a FREE UBot Plugin which will allow you to generate MD5 hash value inside UBot Studio. Plugin will add 2 new functions: "$MD5 from string" returns a hash value of a string,"$MD5 from file" returns a hash value of a file.http://ubotdev.com/wp-content/uploads/2013/04/MD5-Hash-Generator-300x211.png For more information about the plugin and how to download it please visit this my blog page. Direct download Hopefully you like the plugin and it will help you to make better bots.
    1 point
  2. Take a look at this thread: http://www.ubotstudio.com/forum/index.php?/topic/12766-how-does-pause-script-and-stop-script-work/ In particular post #14 by magoo.
    1 point
  3. 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
    1 point
  4. You could also just add 2 lists into an empty table as column (1st list is in 1st col, 2nd one in 2nd), then you simply save table as CSV. You can also change delimiter of the table, so you can use ":" if you need to.
    1 point
  5. 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)
    1 point
  6. Here is what I do. (I created a bot to do this for me). 1. Go to http://mail2web.com 2. Login using the email acct and password 3. The look for the link "Delete all emails in this folder" 4. Confirm and zap-o-la the emails are gone Sure there are other ways but I find letting this website do the work is okay to. Buddy
    1 point
×
×
  • Create New...