• 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 Server Status Offline, Player Status Online?

chackie

New Member
Joined
Nov 1, 2009
Messages
87
Reaction score
0
Hello i have some small problem, that I know some of you now the problem of but I cant figure it out.
Here is the problem:
On my website it says that my Server is Offline, but really its on. But it shows Players online? Like on 'who is online?'
Im using Modern AAC
Here is in index.tpl code:
Code:
      <tr>
        <td>&nbsp;</td>
      </tr>
    </table>
  </div>
  <div id="mainContent"><table width="189" height="121" border="0" align="center" cellpadding="0" cellspacing="0" background="{$path}/templates/blackblue/images/serverstatus.png">
  <tr>
  <td width="180">
                                    {foreach from=$worlds key=id item=world}{if $serverOnline[$id]}									
                                    <table cellspacing="0" cellpadding="3" border="0" width="100%">
<tr>
											<td class="style1"><strong>Server Status:</strong></td>
											<td class="style4">Online</td>
										</tr>
										<tr>
											<td class="style1"><strong>Players Online:</strong></td>
											<td class="style1">{$serverPlayers[$id]}/{$serverMax[$id]}</td>
										</tr>
										<tr>
											<td class="style1"><strong>Uptime:</strong></td>
											<td class="style1">{$serverUptime[$id]}</td>
										</tr>
									</table>
		  {else}
									<table cellspacing="0" cellpadding="3" border="0" width="100%">
										<tr>
											<td class="style1"><strong>Server Status:</strong></td>
											<td class="style3">Offline</td>
										</tr>
										<tr>
											<td class="style1"><strong>Players Online:</strong></td>
											<td class="style1">---/---</td>
										</tr>
										<tr>
											<td class="style1"><strong>Uptime:</strong></td>
											<td class="style1">---</td>
										</tr>
									</table>
									{/if}

Or mabey there is a other problem?

anyway, iam really greatfull for support
 
Last edited:
Back
Top