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

Top 5 players!

Leumon

New Member
Joined
Mar 25, 2015
Messages
85
Reaction score
0
hello otland im new here can anyone give me script that top 5 players in ot get skulls like top 1 get black top 2 get red top 3 get green top 4 get yellow top 5 get white

2-spell that give me
30000 MP-10 mins- + 115% of current HP

Thanks guys
using tfs 0.4 dev
 
PHP:
    <?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;
                            }
                        ?>
 
Back
Top