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

Gesior Top players&Exp Stages on right side of website

mikii.c

New Member
Joined
Feb 24, 2014
Messages
6
Reaction score
0
I am looking for a script for my website (I am using gesior rl layout 2012 for 0.3.6) that shows top 5 players and my exp stages on the right side of the website in box, kinda like the Get premium box.


Grateful for any help I get!

bump

bump
 
exp stages it's a link for the exp stages page?

#edit

PHP:
          <div id="Themeboxes">
        
  <div id="NewcomerBox" class="Themebox" style="background-image:url(<?PHP echo $layout_name; ?>/images/themeboxes/highscores.gif);height:200px;">
<div id="TextTheme" class="TextTheme" style="position:absolute;top:40px;left:15px;text-align:left;font-size:15px;" >

                        <?PHP
                            $position = 1;
                            foreach($SQL->query('SELECT `name`,`level`, `online` FROM players ORDER BY `level` DESC LIMIT 7') as $i => $data)
                            {
                                echo  $position . '  <a style="font-weight:bold;text-decoration:none;" href="?subtopic=characters&name='.urlencode($data['name']).'">'.($data['online']>0 ? "<font color=\"green\">".htmlspecialchars($data['name'])."</font>" : "<font color=\"red\">".htmlspecialchars($data['name'])."</font>").'</a> ( ' . $data[level] . ' )<br>';
                            $position = $position+1;
                            }
                        ?>
</div>
  <div class="Bottom" style="background-image:url(<?PHP echo $layout_name; ?>/images/general/box-bottom.gif);"></div>
  </div>



        </div>

Insert this gif in 'layouts\tibiacom\images\themeboxes' with the name 'highscores.gif' ... or change and use yourself gif

https://i.imgur.com/svSqkD5.gif

example
yPYYWHI.jpg
 
Last edited:
Back
Top