[Searching]PHP PVP Ranking

08/18/2012 15:40 masterdj39#1
Hi

Do anyone know where i can find a php pvp ranking script, to put on my Metin2 website, or someone know how can i make one¿

I can give an example Website with the script on it if its needed.

Thank you,

Moisés
08/21/2012 02:16 masterdj39#2
Someone¿...
08/21/2012 04:03 Mijago#3
PVP rank? You will need a quest which counts up or you read it from the log table (i would prefer the Quest ;))

for a normal Ranking you could use sth like this:
PHP Code:
<?
$e 
mysql_query("SELECT name,level,exp from player.player order by level,exp,name desc limit 50");
echo 
"<table><tr><td>Name</td><td>Level</td><td>EXP</td></tr>";
while(
$r mysql_fetch_object($e))
{
   echo 
"<tr><td>".$r->name."</td><td>".$r->level."</td><td>".$r->exp."</td></tr>";
}
echo 
"</table>";
?>
08/21/2012 20:13 masterdj39#4
I have the Quest, but it doenst count on the log table..

Is just ingame.

Thats why im trying to find a php ranking :s
09/11/2012 17:11 masterdj39#5
Can you help¿..