Advertisement
Guest User

Gesior - Powergamers - Rechdan - xTibia

a guest
Oct 7th, 2012
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.41 KB | None | 0 0
  1. <?PHP
  2. $limit = 100;
  3. $type = $_REQUEST['type'];
  4. function coloured_value($valuein)
  5. {
  6.     $value2 = $valuein;
  7.     while(strlen($value2) > 3)
  8.     {
  9.         $value .= '.'.substr($value2, -3, 3);
  10.         $value2 = substr($value2, 0, strlen($value2)-3);
  11.     }
  12.     $value = $value2.$value;
  13.     if($valuein > 0)
  14.         return '<font color="green">+'.$value.'</font>';
  15.     elseif($valuein < 0)
  16.         return '<font color="red">'.$value.'</font>';
  17.     else
  18.         return '<font color="black">'.$value.'</font>';
  19. }
  20. if(empty($type))
  21.     $players = $SQL->query(' SELECT * FROM players ORDER BY `players`.`experience`-`players`.`exphist_lastexp` DESC LIMIT '.$limit)->fetchAll();
  22. elseif($type == "sum")
  23.     $players = $SQL->query(' SELECT * FROM players ORDER BY `players`.`exphist1`+`players`.`exphist2`+`players`.`exphist3`+`players`.`exphist4`+`players`.`exphist5`+`players`.`exphist6`+`players`.`exphist7`+`players`.`experience`-`players`.`exphist_lastexp` DESC LIMIT '.$limit)->fetchAll();
  24. elseif($type >= 1 && $type <= 7)
  25.     $players = $SQL->query(' SELECT * FROM players ORDER BY exphist'.(int) $type.' DESC LIMIT '.$limit)->fetchAll();
  26. $main_content .= '<CENTER><H2>Ranking of powergamers</H2></CENTER><BR><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=1100></TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=1100><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD WIDTH=20 CLASS=white align=center><B>#</B></TD><TD WIDTH=180 CLASS=white><B>Nome</B></TD>';
  27. if($type == "sum")
  28.     $main_content .= '<TD WIDTH=100 bgcolor="red" CLASS=whites><b><center><a href="?subtopic=exphist&type=sum">7 Days sum</a></center></B></TD>';
  29. else
  30.     $main_content .= '<TD WIDTH=100 bgcolor="yellow" CLASS=whites><b><center><a href="?subtopic=exphist&type=sum">7 Days sum</a></center></B></TD>';
  31. for($i = 7; $i >= 2; $i--)
  32.     if($type == $i)
  33.         $main_content .= '<TD WIDTH=100 bgcolor="red" CLASS=whites><b><center><a href="?subtopic=exphist&type='.$i.'">'.$i.' Days Ago</a></center></B></TD>';
  34.     else
  35.         $main_content .= '<TD WIDTH=100 bgcolor="yellow" CLASS=whites><b><center><a href="?subtopic=exphist&type='.$i.'">'.$i.' Days Ago</a></center></B></TD>';
  36. if($type == 1)
  37.     $main_content .= '<TD WIDTH=100 bgcolor="red" CLASS=whites><b><center><a href="?subtopic=exphist&type=1">1 Day Ago</a></center></B></TD>';
  38. else
  39.     $main_content .= '<TD WIDTH=100 bgcolor="yellow" CLASS=whites><b><center><a href="?subtopic=exphist&type=1">1 Day Ago</a></center></B></TD>';
  40. if(empty($type))
  41.     $main_content .= '<TD WIDTH=100 bgcolor="red" CLASS=whites><b><center><a href="?subtopic=exphist">Today</a></center></B></TD>';
  42. else
  43.     $main_content .= '<TD WIDTH=100 bgcolor="yellow" CLASS=whites><b><center><a href="?subtopic=exphist">Today</a></center></B></TD>';
  44. $main_content .= '</TR>';
  45. foreach($players as $player)
  46. {
  47.     if(!is_int($number_of_rows / 2)) { $bgcolor = $config['site']['darkborder']; } else { $bgcolor = $config['site']['lightborder']; } $number_of_rows++;
  48.     $main_content .= '<tr bgcolor="'.$bgcolor.'"><td align="center">'.$number_of_rows.'</td>';
  49.     $acc = $SQL->query('SELECT * FROM '.$SQL->tableName('accounts').' WHERE '.$SQL->fieldName('id').' = '.$player['account_id'].'')->fetch();
  50.     if($player['online'] == 1)
  51.         $main_content .= '<td><image src="images/flags/'.$acc['flag'].'.png"/> <a href="?subtopic=characters&name='.urlencode($player['name']).'"><b><font color="green">'.$player['name'].'</font></b></a>';
  52.     else
  53.         $main_content .= '<td><image src="images/flags/'.$acc['flag'].'.png"/> <a href="?subtopic=characters&name='.urlencode($player['name']).'"><b><font color="red">'.$player['name'].'</font></b></a>';
  54.     $main_content .= '<br />'.$player['level'].' '.$config_vocations[$player['vocation']].'</td><td align="right">'.coloured_value($player['exphist1'] + $player['exphist2'] + $player['exphist3'] + $player['exphist4'] + $player['exphist5'] + $player['exphist6'] + $player['exphist7'] + $player['experience'] - $player['exphist_lastexp']).'</td>';
  55.     $main_content .= '<td align="right">'.coloured_value($player['exphist7']).'</td><td align="right">'.coloured_value($player['exphist6']).'</td><td align="right">'.coloured_value($player['exphist5']).'</td><td align="right">'.coloured_value($player['exphist4']).'</td><td align="right">'.coloured_value($player['exphist3']).'</td><td align="right">'.coloured_value($player['exphist2']).'</td><td align="right">'.coloured_value($player['exphist1']).'</td><td align="right">'.coloured_value($player['experience']-$player['exphist_lastexp']).'</td></tr>';
  56. }
  57. $main_content .= '</TABLE>';
  58. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement