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

Windows Geisor "Show Online" Help [Rep+]

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
Can some help me Geisor 0.3.5
my server online status onlie shows "Loading..."

how do i fix that ... i search on PLayer ONline in layout and find this can it be any help ?:confused:
Code:
          </div>
        </div>
        <div id="ThemeboxesColumn">
          <div id="RightArtwork">
            <img id="Monster" src="http://images1.wikia.nocookie.net/tibia/en/images/5/54/Quara_Predator.gif" onClick="window.location = 'index.php?subtopic=creatures&amp;creature=<?PHP echo logo_monster() ?>';" alt="Monster of the Week" />
            <img id="PedestalAndOnline" src="<?PHP echo $layout_name; ?>/images/header/pedestal-and-online.gif" alt="Monster Pedestal and Players Online Box"/>
          <div id="PlayersOnline" onClick="window.location = 'index.php?subtopic=whoisonline'"><div id="divServerStatus">Loading...<br>&nbsp;</div><?PHP echo ""; ?></div>
        </div>
 
This should work.

Code:
          </div>
        </div>
        <div id="ThemeboxesColumn">
          <div id="RightArtwork">
            <img id="Monster" src="http://images1.wikia.nocookie.net/tibia/en/images/5/54/Quara_Predator.gif" onClick="window.location = 'index.php?subtopic=creatures&amp;creature=<?PHP echo logo_monster() ?>';" alt="Monster of the Week" />
            <img id="PedestalAndOnline" src="<?PHP echo $layout_name; ?>/images/header/pedestal-and-online.gif" alt="Monster Pedestal and Players Online Box"/>
          <div id="PlayersOnline" onClick="window.location = '?subtopic=whoisonline'">
		  <?PHP
			if($config['status']['serverStatus_online'] == 1)
				echo $config['status']['serverStatus_players'].'<br />Players Online';
			else
				echo '<b>Server<br />OFFLINE</b>';
			?></div>
        </div>

Good luck =)
 
This should work.

Code:
          </div>
        </div>
        <div id="ThemeboxesColumn">
          <div id="RightArtwork">
            <img id="Monster" src="http://images1.wikia.nocookie.net/tibia/en/images/5/54/Quara_Predator.gif" onClick="window.location = 'index.php?subtopic=creatures&amp;creature=<?PHP echo logo_monster() ?>';" alt="Monster of the Week" />
            <img id="PedestalAndOnline" src="<?PHP echo $layout_name; ?>/images/header/pedestal-and-online.gif" alt="Monster Pedestal and Players Online Box"/>
          <div id="PlayersOnline" onClick="window.location = '?subtopic=whoisonline'">
		  <?PHP
			if($config['status']['serverStatus_online'] == 1)
				echo $config['status']['serverStatus_players'].'<br />Players Online';
			else
				echo '<b>Server<br />OFFLINE</b>';
			?></div>
        </div>

Good luck =)

dont work..
 
Back
Top