Jump to content

Zero

Members
  • Posts

    289
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Zero

  1. His mum charges considerably less then other local hookers.
  2. Why does it seem that OSBot is using the reddit logo ?
  3. I think you have this forum mistaken for /b/
  4. Any users looking to use this script but are not able to implement it, please contact me, i have a solution for you.
  5. Image is clearly photoshop'd. Invalid proof. Staff please close.
  6. Zero

    3D OSBOT LOGO

    The second image now represents the seizure OSBot has when RuneScspe updates
  7. Whenever anyone views the online users it quickly updates the database and removes any entries that haven't been updated in 2 minutes.
  8. At the moment yes. I am considering creating a website that can be used by script developers to display users using this method but without the hassle of actually creating a website themselves.
  9. 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.
  10. So i got asked to create a script that will allow script developers to show the username of accounts using their scripts. This was done by sending secure POST calls to a PHP script that then stored the usernames in a database. Showing the usernames of OSBot users using your script is a stupid idea ? well simply just show a count of online users! I will be releasing this publicly once i do a little more testing.
  11. Zero

    DayZ

    The mod is better. Iv been tempted to start a server.
  12. Put simply, i got screwed over and the site died, unfortunately.
  13. I plan on allowing only OSBot members access to create email address that forward to their primary email. Everything will be automated and emails like admin@osbot.me will be restricted to only staff.
  14. Expression of interest at this stage. Still waiting to contact an Administrator to get approval. Thank you.
  15. THIS WILL NOT BE ANOTHER CAT THREAD!
  16. https://i.4cdn.org/f/src/Everyday%20I%27m%20drinking.swf Wow this thread sounds so bad now.
  17. Hurry up and get to the next page so i can claim it D:
×
×
  • Create New...