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

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

  1. Offline

    Wonkster

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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...

    This post has been edited 1 time. It was last edited by Bertware Jul 5, 2012.
  3. Offline

    Wonkster

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Thanks haha, I was searching for the wrong thing. I added ping to the search and got some easy results.
  4. Offline

    ewized

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    So is there a way to get the source code for this.
  5. Offline

    ChrisX930

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    does this need rcon?
  7. Offline

    stuntguy3000

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Personally i use MineQuery (partly because its so easy to use :p)
  8. Offline

    ChrisX930

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    no, you don't need rcon for it.
  9. Offline

    Kieron Etherimgton

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Anyone got a more indepth version of this? which likes shows how many players are connect, ping and possibly the players faces

Share This Page