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

HELP SITE ZNOTE

Igor Milagres

Member
Joined
May 12, 2018
Messages
76
Reaction score
21
Hi friends, can anyone tell me where I should go to solve this? I would like to put the names of the highscores lined up, increase the number of players shown from 5 to 10 and show the outfits they actually wear.


6f06674a-dc57-41cb-a32b-a73cb2604d3f.jpg
 
if its znote, usually it should be in rightside.php or something similar, look for a file called this and paste it here.

Lua:
<div id="DeactivationContainerThemebox" ></div>
<div id="RightArtwork">
    <img id="Monster" src="layout/images/global/header/monsters/hero.gif" onClick="window.location = 'onlinelist.php';" alt="Monster of the Week" />
    <img id="PedestalAndOnline" src="layout/images/global/header/pedestal-and-online.gif" alt="Monster Pedestal and Players Online Box"/>
    <div id="PlayersOnline" onClick="window.location = 'onlinelist.php';">
        <a href="onlinelist.php" id="online">Players online:<br><?php echo user_count_online();?></a>
        
    </div>
</div>
<div id="Themeboxes">
    <div id="NewcomerBox" class="Themebox" style="background-image:url(layout/images/global/themeboxes/newcomer/newcomerbox.gif);">
        <a class="ThemeboxButton" href="register.php" onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" style="background-image:url(layout/images/global/buttons/sbutton.gif);">
            <div class="BigButtonOver" style="background-image:url(layout/images/global/buttons/sbutton_over.gif);"></div>
            <div class="ButtonText" style="background-image:url(layout/images/global/buttons/_sbutton_jointibia.gif);"></div>
        </a>
        <div class="Bottom" style="background-image:url(layout/images/global/general/box-bottom.gif);"></div>
    </div>
    <div id="PremiumBox" class="Themebox" style="background-image:url(layout/images/global/themeboxes/premium/premiumbox.gif);">
        <a class="ThemeboxButton" href="buypoints.php" onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" style="background-image:url(layout/images/global/buttons/sbutton.gif);">
            <div class="BigButtonOver" style="background-image:url(layout/images/global/buttons/sbutton_over.gif);"></div>
            <div class="ButtonText" style="background-image:url(layout/images/global/buttons/_sbutton_getpremium.gif);"></div>
        </a>
        <div class="Bottom" style="background-image:url(layout/images/global/general/box-bottom.gif);"></div>
    </div>                                           
    <!--<div id="ScreenshotBox" class="Themebox" style="background-image:url(layout/images/global/themeboxes/screenshot/screenshotbox.gif);">
        <a href="{$path}/index.php/p/v/gallery">
            <img id="ScreenshotContent" class="ThemeboxContent" src="layout/images/abouttibia/screenshotoftheday.png" alt="Screenshot of the Day"/>
        </a>
        <div class="Bottom" style="background-image:url(http://static.tibia.com/images/global/general/box-bottom.gif);"></div>
    </div>
    <div id="CurrentPollBox" class="Themebox" style="background-image:url(layout/images/global/themeboxes/current-poll/currentpollbox.gif);">
        <div id="CurrentPollText">Most powerful vocation?</div>
        <a class="ThemeboxButton" href="{$path}" onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" style="background-image:url(layout/images/global/buttons/sbutton.gif);">
            <div class="BigButtonOver" style="background-image:url(layout/images/global/buttons/sbutton_over.gif);"></div>
            <div class="ButtonText" style="background-image:url(layout/images/global/buttons/_sbutton_votenow.gif);"></div>
        </a>
        <div class="Bottom" style="background-image:url(layout/images/global/general/box-bottom.gif);"></div>
    </div>-->
</div>
 
Back
Top