Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 02/09/13 in all areas

  1. Some people were asking for how to use Javascript in ubot, so this is a quick intro to using it in ubot studio . Hope this helps!
    3 points
  2. I've been waiting for this feature to get implemented and I just realized today that its already possible using javascript. Download: onload.ubot Just change the "definesub" with your own sub name. This will work even if you have standard license. Hope you like it. K
    1 point
  3. Microsoft Security Essentials is great and free. Also the best protection is just making smart decisions when your online and if your paranoid like me then just reformat every 3-6 months because while AV's are okay in reality you can still have your computer catch a cold they can't detect. One more thing, use Sandboxie whenever you go to unknown websites - or a vps or something.
    1 point
  4. https://www.pcvmurcor.com/ - vendor login. Is it possible to click the link?
    1 point
  5. define Startup { clear list(%Main Menu) navigate("http://www.dafont.com/", "Wait") wait for element(<class="dl">, 120, "Appear") comment("Build Main Menu") add list to list(%Main Menu, $scrape attribute(<outerhtml=w"<a href=\"./alpha.php?lettre=*\"> *</a>">, "fullhref"), "Don\'t Delete", "Global") } define Go To Main Page { navigate($list item(%Main Menu, 0), "Wait") wait for browser event("Everything Loaded", "") wait for element(<class="dl">, 120, "Appear") if($comparison($scrape attribute(<name="fpp">, "value"), "!=", 5
    1 point
  6. Nope, the ADD button opens the file explorer for you to add OTHER plugins that you might have on your HDD. For Seth Turin's just click the tickbox, they get downloaded automa(t/g)ically from UBS servers.
    1 point
  7. Got a solution - and works quite well. Here's the code: clear list(%rows) navigate("https://docs.google.com/spreadsheet/ccc?key=0ArxcY3eOFl_CdE41MzlZSFEyeEhaWGdqUlI2N3ZOd2c#gid=0", "Wait") wait for browser event("Page Loaded", "") wait(1) add list to list(%rows, $scrape attribute(<class=w"g-0-*">, "innertext"), "Don\'t Delete", "Global") wait(1) set(#listtotal, $subtract($list total(%rows), 6), "Global") wait(1) set(#listtotal2, $divide(#listtotal, 6), "Global")In the interests of cleaning up my code is there a better way to do this?
    1 point
  8. Christmas is coming, so I thought I would give you a little bit of a UBot specific 'gift'. I have seen many threads where people had issues with combining JavaScript coding with UBot. I chose a simple example (derived from a programming need I had to transform DECIMAL into HEXADECIMAL) of how to create a UBot custom function to change a variable's value from DEC to HEX representation. Such a function is not natively available in UBot, but it is in JavaScript. So here we go: We start the UBot code, by adding the new DEFINE, with two input parameters: the value to be translated from DEC
    1 point
×
×
  • Create New...