Jump to content
UBot Underground

kev123

Fellow UBotter
  • Content Count

    731
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by kev123

  1. i'm sure you will find someone but be careful you don't get someone stealing your scripts and rehashing it as a new bot.
  2. this is a define for what your asking uiselect was a text box. it basically reads whats in the text box and and splits it into two variables ignore the variable titles its ripped from a bot. define splitdelimit { clear list(%split) add list to list(%split, $list from text(#uiselect, "/"), "Delete", "Global") set(#category, $list item(%split, 0), "Global") set(#subcategory, $list item(%split, 1), "Global") }
  3. here's a example of processing a csv file with three columns and putting it in lists should be suitable for what you have requested. ignore the list titles its ripped from one of my bots. ui open file(" open csv", #uiopen csv) create table from file(#uiopen csv, &csvtable) set(#tabletolist, 0, "Global") loop($table total rows(&csvtable)) { add item to list(%topics, $table cell(&csvtable, #tabletolist, 0), "Don\'t Delete", "Global") add item to list(%comments, $table cell(&csvtable, #tabletolist, 1), "Don\'t Delete", "Global") add item to list(%categories, $table
  4. strange I loaded the site in a compiled bot and it doesn't allow you to drag and drop when done manually
  5. i'm trying to master darp and drop sites they crop up all the time. how would you handle a site like this http://html5demos.com/drag# java?
  6. I thought I would start this thread for people to share advanced shell commands. i'm no expert so i'll start with a question lol is it possible to control internet connections eg drop wifi and reconnect or drop Ethernet port through shell commands (I know this is possible through ubots windows commands)
  7. yeah its a pretty handy bit of software for quick bots have you thought about any styling options such as border lines tabs etc would make it really powerful.
  8. I just purchased and when the registration window pops up name: email: unlock code: I tried my registration as it unlock code and it won't open. although this isn't how you described in the download email of how to open it the only popup box
  9. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script type="text/javascript"> function moveData(data) { var parts = data.split('/'); var f = document.form1; alert(parts[0]+":"+parts[1]); f.cat.value = parts[0]; f.sub.value = parts[1]; } </script> <style type="text/css"> * {margin:0;padding:0;} </style> </head> <body> <form name="form1" action="http://www.domain.com/c
  10. has anyone done any linking of ui drop down boxes for example first box would be categories second box would be sub categories. so if the user picked fruit in the first drop down the second drop would populate the sub options apples,oranges etc. I could programme this in ubot but this would need to happen before the bot runs and update instantly. anyone done this? java maybe?
  11. great idea there's probably a ton of services people offer on other forums that might be helpful for people on here
  12. I've just upgraded from pro to dev checked payment has gone through and it also confirmed on the website. uninstalled ubot and redownloaded ubot for some reason I have still got the pro version. Does it take a certain amount of time before the upgrade goes through at the server side?
  13. I've been playing with it for the last few days file exist command works a treat. for example with a third party software that you want it to loop through modifying files and then saving them.
×
×
  • Create New...