[Solved] Live Server Status w/ Player Count & motd?

Discussion in 'Bukkit Help' started by Wonkster, Jul 4, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    Wonkster

    I'm in need of some kind of server status tool.
    Kind of like one you get from minestatus, but live (minestatus is updated every 10 minutes...)
    and hopefully something that displays the server motd.

    It is important that it is live or at least has as little delay as possible.
    If anyone has html code or anything for something like this, help is greatly appreciated!
     
  2. Offline

    Bertware

    you mean something like this?
    http://automation.bertware.net/bukkit/server.php?ip=[ YOUR-SERVER-IP ]
    replace [ YOUR-SERVER-IP ] with your actual server ip
    You can tweak the script to add a layout or something...

    And don't kick your post after 1 hour. Also, if you used the forum search, you'd find it immediatly...
     
  3. Offline

    Wonkster

    Thanks haha, I was searching for the wrong thing. I added ping to the search and got some easy results.
     
  4. Offline

    ewized

    So is there a way to get the source code for this.
     
  5. Offline

    ChrisX930

    Try this
    Code:
    <?php
    $ip = "YOURIP"; 
    $port = "25565";
     
     
    if (!@$fp = fsockopen($ip, $port, $errno, $errstr, 1)){
                                  echo "<font color='#FF0000'>Offline</font>";
                                  }
                                  else {
                                  echo "<font color='#00FF00'>Online</font>";
                                  }; ?><br />
    For example: http://triacraft.triavolution.de/index.php
    Look at the bottom of the site.
    You can find the example under "Serverstatistiken"
     
  6. Offline

    ewized

    does this need rcon?
     
  7. Offline

    stuntguy3000

    Personally i use MineQuery (partly because its so easy to use :p)
     
  8. Offline

    ChrisX930

    no, you don't need rcon for it.
     
  9. Anyone got a more indepth version of this? which likes shows how many players are connect, ping and possibly the players faces
     
Thread Status:
Not open for further replies.

Share This Page