Due to ur problem i found a solution. u will have to change 1 thing form the people_onlinen and rename somethings.
I the people_online we found this:
Code: Select all
<?
$dir = "C:\\HBServer3.51\\GameServerLog";
$servname_lenth = "HBServer";
$start = "<font color=green>Players Online </font>";
$lines = file($dir."\\GameServerLog".date("Ymd").".log");
foreach ($lines as $line) {
$final = substr(substr($line, (42 + $servname_lenth), 8), 0, -1);
}
echo $start.$final;
?>
We are going to change de
$servname_lenth = "HBServer";
for
$servname_lenth = "HBServer##";
the we are going to change
$final = substr(substr($line, (42 + $servname_lenth),

, 0, -1);
for
$final = substr(substr($line, (44 + $servname_lenth),

, 0, -1);
People online should stay like this:
Code: Select all
<?
$dir = "C:\\HBServer3.51\\GameServerLog";
$servname_lenth = "HBServer##";
$start = "<font color=green>Players Online </font>";
$lines = file($dir."\\GameServerLog".date("Ymd").".log");
foreach ($lines as $line) {
$final = substr(substr($line, (44 + $servname_lenth), 8), 0, -1);
}
echo $start.$final;
?>
Now we have to rename all
game-server-name =
for
game-server-name = HBServer01
other
game-server-name = HBServer02
and goes on
Make sure u use 01-02-03-04-05-06-07-08-09-10-11...etc
I think u will understand...if not post ur dude.
GoD~