Can you help me with editing stats on website, as in this thread
http://otland.net/f118/all-aac-patch-how-not-count-x-logged-players-84820/
I want it for Modern ACC
Here is part of my index.tpl
http://otland.net/f118/all-aac-patch-how-not-count-x-logged-players-84820/
I want it for Modern ACC
Here is part of my index.tpl
Code:
<div class="header">Server Status</div>
{foreach from=$worlds key=id item=world}
<div><b>
<b>World:</b> {$world} <br />
<b>Status:</b>
{if $serverOnline[$id]}
<span style="color: green;font-weight: bold;">Online</span><br />
<b>Uptime:</b> {$serverUptime[$id]} <br />
[B] <b>Players:</b> {$serverPlayers[$id]}/{$serverMax[$id]}<br /><br />[/B]
{else}
<span style="color: red;font-weight: bold;">Offline</span>
{/if}
</div>