• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Gesior 2012 online status

in system/load.compat.php

Search:
Code:
$statusInfo = new ServerStatus($config['server']['ip'], $config['server']['statusPort'], 1);
and replace with:
Code:
$statusInfo = new ServerStatus('127.0.0.1', $config['server']['statusPort'], 1);
 
Post your layout.php
it has 531 lines but I think that you need these line:
Code:
<?PHP
            if($config['status']['serverStatus_online'] == 1)
                echo $config['status']['serverStatus_players'].'<br />Players Online';
            else
                echo '<font color="red"><b>Server<br />OFFLINE</b></font>';
         ?></div>
        </div>

excuse me for the late reaction btw
 
Back
Top