Reid Posted January 30, 2014 Share Posted January 30, 2014 Would u be able to make it show the information more neatly in a nice table or something? Link to comment Share on other sites More sharing options...
Reid Posted February 1, 2014 Share Posted February 1, 2014 sexy? Link to comment Share on other sites More sharing options...
Debot Posted February 5, 2014 Share Posted February 5, 2014 in the wrong hands this can cost alot of passwords? Link to comment Share on other sites More sharing options...
Zero Posted February 5, 2014 Author Share Posted February 5, 2014 in the wrong hands this can cost alot of passwords? From what i know the OSBot API doesn't give access to stored account passwords. Link to comment Share on other sites More sharing options...
Gilgad Posted February 5, 2014 Share Posted February 5, 2014 All of your account information is stored on your computer. This merely grabs information from OSBot database via your user you created on OSBot. Link to comment Share on other sites More sharing options...
Extreme Scripts Posted February 6, 2014 Share Posted February 6, 2014 This script will allow you to show what OSBot users are currently using your scripts via a website. Setup is required and you will need website hosting and a MySQL database. MySQL Create a MySQL database, write down all the connection information and then run the following query: CREATE TABLE `online` (`id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `script` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `time` int(11) NOT NULL, `ip` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci PHP Upload the following package to your website and edit the 'include/database.php' file: http://uppit.com/8q7nlo4h998w/online.zip Note: Edit the key in the index.php file. Java Add a class to your script called: Online.java and paste the following code in it: http://pastebin.com/raw.php?i=2j9TDdHW Note: Don't forget to edit the key and php information. Now, add the following imports to your script: import java.util.Timer; import java.util.TimerTask; Add the following at the start of your scripts class: Timer timer = new Timer(); String script = "SCRIPT NAME"; Add the following to the start of your onStart method: log(Online.add_user(client.getBot().getUsername(), script)); timer.scheduleAtFixedRate(new TimerTask() { @Override public void run() { Online.add_user(client.getBot().getUsername(), script); } }, 0, 60000); And the following to your onExit method: log(Online.remove_user(client.getBot().getUsername(), script)); timer.cancel(); Usage! $online = json_decode(file_get_contents('http://YOURSITE.COM/online/index.php'), TRUE); //show every user and the script they are using foreach($online as $user) { echo $user['username'] . " : " . $user['script']; } //show total online user count echo count($online); Note! It's 3am, i'm tired and iv probably made a few mistakes. Please just post if you notice any errors or mistakes so i can get them sorted out. You didnt update the hyperlink dude :P Link to comment Share on other sites More sharing options...
Zero Posted February 6, 2014 Author Share Posted February 6, 2014 Hyperlink updated :P Link to comment Share on other sites More sharing options...