Hi guys i want to put some script on index.php that make a simple text that people can see how many online in game.anyone know what script should i put on index.php on mucore 1.0.8.thanks in advance guys.
Sample Screenshot
Attachment 124209
Printable View
Hi guys i want to put some script on index.php that make a simple text that people can see how many online in game.anyone know what script should i put on index.php on mucore 1.0.8.thanks in advance guys.
Sample Screenshot
Attachment 124209
If there are no luck with answers over here, try installing a new template! :)
i dont see any template with that useronline on main page,can you share one?hard to find template for 1.8mucore
:) you just need this code
enjoy!Code:$cs_port = 0;
$gs_port = 0;
$gscs_port = 0;
$host = localhost;
$fp=@fsockopen($host,$cs_port,$ERROR_NO,$ERROR_STR,(float)0.5);
if ($fp) {
print '<b><FONT color="White">Server PVP:  </print><img src="template/'.$core["config"]["template"].'/images/on.png"></font><br>
</FONT></b> ';
}
else {
print '<b><FONT color="White">Server PVP:  </print><img src="template/'.$core["config"]["template"].'/images/off.png"></font></b> <br>';
}
fclose($fp);
$fp=@fsockopen($host,$gscs_port,$ERROR_NO,$ERROR_STR, (float)0.5);
if ($fp) {
print '<b><FONT color="Gold">Gold Server: <img src="template/'.$core["config"]["template"].'/images/on.png"></font></b>';
}
else {
print '<b><FONT color="gold">Gold Server: <img src="template/'.$core["config"]["template"].'/images/off.png"> </font></b>';
}
fclose($fp);
?>