Skip to content

Instantly share code, notes, and snippets.

@ranisalt
Created May 7, 2014 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ranisalt/3e5ba3d69f209866819e to your computer and use it in GitHub Desktop.
Save ranisalt/3e5ba3d69f209866819e to your computer and use it in GitHub Desktop.
<?php
include('otinfo.php');
$server = new Otinfo('shadowcores.twifysoft.net');
if ($server->execute()) {
echo 'Players online: ', $server->players['online'], '<br />',
'Server location: ', $server->serverinfo['location'], '<br />',
'Client version: ', $server->serverinfo['client'] , '<br />';
} else {
echo 'Server offline';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment