• 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!

added "Not count x-logged people"

Try this:

PHP:
echo ' 
        <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%> 
                <TR BGCOLOR="'.$config['site']['vdarkborder'].'"> 
                        <TD CLASS=white><B>Server Status</B></TD> 
                </TR> 
                <TR BGCOLOR='.$config['site']['darkborder'].'> 
                        <TD>'; 
                                 
                                 
                                        if($number_of_players_online == $config['status']['serverStatus_players']) 
                                         
                                        echo 'Currently there are '.$number_of_players_online.' players is active'; 
                                
                                else 
                                        echo 'Currently there are '.$config['status']['serverStatus_players'].' active and '.($number_of_players_online - $config['status']['serverStatus_players']).' AFK players'; 
                        echo ' on '.$world_name.' gameworlds.<br> 
                        </TD> 
                </TR> 
        </TABLE><BR>';
 
Back
Top