- Joined
- Sep 5, 2006
- Messages
- 29
- Reaction score
- 0
Somebody has some script that it shows if to the server this ON / OFF and Players?
Somebody has some script that it shows if to the server this ON / OFF and Players?
<?php
/*change your server's name and host*/
$server['name'] = "MyPT";
$server['host'] = "127.0.0.1";
$server['port'] = "10007";
/*no need to change the further code*/
$connection = @fsockopen($server['host'], $server['port'], $ERROR_NO, $ERROR_STR, (float)1.5);
echo "{$server['name']} PristonTale server is ";
if($connection)
{
fclose($connection);
echo "<font color=\"green\">online</font>";
}
else
{
echo "<font color=\"red\">offline</font>";
}
?>