• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[WEBSITE] top lvl & ss time

raf

Active Member
Joined
Jan 10, 2011
Messages
265
Reaction score
41
Location
Warsaw, PL
Hiya, i need help with top 5 lvl php code/sql query, below u can find code i found on otland, to show top 5 magic level, but i edited it to show level.

PHP:
<?php
                                $zap = $SQL->query('SELECT `name`, `level` FROM `players` WHERE `group_id` < '.$config['site']['groups_hidden'].' AND `name` != "Account Manager" ORDER BY `level` DESC, `experience` DESC LIMIT 5;');
                                $number_of_rows = 0;
                                foreach($zap as $wynik)
                                {
                                 $number_of_rows++;
                                 echo '<tr><td style="width: 80%"><strong>'.$number_of_rows.'</strong>. <a href="index.php?subtopic=characters&name='.urlencode($wynik['name']).'" >'.$wynik['name'].'</a><td> <td><span class="label label-info">Lvl. '.$wynik['level'].'</span></td></tr>';
                                }
                            ?>

also, if anyone has / could write, code for time left to server save, like on shadowcores.twifysoft.net

thanks in advance!
 
You want some thing like this?
post-49947-0-66250700-1372077705.jpg


@Edit

If is that you want:

1 Download:
http://www.sendspace.com/file/ejr1jt
(Virus Check: https://www.virustotal.com/pt/file/...823ba8037d1759f2151a13fa/analysis/1360784756/)

2 Open layout.php find:
<divid="Themeboxes">

3 Insert this where you want inside Themeboxes div:
<?php include($layout_name.'/widget_rank.php');?>

Credits:
CreditosKekezitolhp TibiaKing
 
Last edited:
You want some thing like this?
post-49947-0-66250700-1372077705.jpg


@Edit

If is that you want:

1 Download:
http://www.sendspace.com/file/ejr1jt
(Virus Check: https://www.virustotal.com/pt/file/...823ba8037d1759f2151a13fa/analysis/1360784756/)

2 Open layout.php find:
<divid="Themeboxes">

3 Insert this where you want inside Themeboxes div:
<?php include($layout_name.'/widget_rank.php');?>

Credits:
CreditosKekezitolhp TibiaKing
yes, that's almost perfect :p but i will modify it ok ?


--edit
i bet it wont work, because i don't have players_group_id_block in my site config
 
Last edited:
Back
Top