Re: [V2]Ranks Mod!!!![V2]
There is a big difference between 86 lines just to output the image and name
Here is something simpler, only 8 lines.
<?
function getRank($lvl) {
$rank = 0;
while($lvl > 5) { $lvl=$lvl-1; $rank++; }
return $rank;
} // A simple example, nothing complex
$rank = getRank($ir['level']);
$names = array (1=>'rank1', 2=>'rank2', 3=>'rank3', 4=>'rank4', 5=>'rank5');
echo $names[$rank].'
';
?>