• 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 Acc] Top LVL/MLVL

BioHazard94

P[r]oland
Joined
Mar 24, 2009
Messages
116
Reaction score
0
Location
P[r]oland
Hello i have new script for you !
"Top 5 Magic Level"

Add to layout.php.php this code !
PHP:
			<h1>Top 5<small> Magic Level</small></h1>
			<ul>
<?php
							$limitt = 5;
							$zap = $SQL->query('SELECT `name`, `maglevel` FROM `players` WHERE `group_id` < '.$config['site']['players_group_id_block'].' AND `name` != "Account Manager" ORDER BY `maglevel` DESC, `experience` DESC LIMIT 5;');
							$number_of_rows = 0;
							foreach($zap as $wynik)
							{
							 $number_of_rows++;
							 echo '<li class="light">'.$number_of_rows.'. <a href="index.php?subtopic=characters&name='.urlencode($wynik['name']).'" >'.$wynik['name'].'</a> <br> Level: <b>('.$wynik['maglevel'].')</b></li>';
							}
						?>
			</ul>

Screen:
mlvl.png


Look in practice:
HERE
 
The script written by Me. I don't know why didn't write the author.
 
it's just the top 5 lvl script changed with ml, nothing new
 
what about if I want to put reputation-rep + rep and I wanted that appears in the lastnews.php
 
not from ur script but i cant whrite it in a new thread so i wrote it here hoping someone could help me
 
Back
Top