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!
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...
Thanks haha, I was searching for the wrong thing. I added ping to the search and got some easy results.
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"
Anyone got a more indepth version of this? which likes shows how many players are connect, ping and possibly the players faces