Poderia expecificar qual seria o site utilizado (modern acc, gesior, etc), poderia também postar a pagina de rank para que possa ser analizada e assim desenvolvido algo em cima da mesma. Fico no aguardo.
- Fórum
- xTibia - Notícias e Suporte
- Soluções
- Archived
- Rank Vocation
info
Grupo: Marquês
Registrado: 26/02/12
Posts: 1.1k
Reputação: +369
Gênero: Masculino
Char no Tibia: Tibjohiand Tito

info
Grupo: Cavaleiro
Registrado: 14/04/15
Posts: 191
Reputação: +2

Uso gesior e o site que mostrei tbm é.
http://wono.ddns.net/wono/index.php?subtopic=topplayers&profa=Naruto
info
Grupo: Marquês
Registrado: 26/02/12
Posts: 1.1k
Reputação: +369
Gênero: Masculino
Char no Tibia: Tibjohiand Tito

Veja se ajuda, fiz baseado em tibia, basta editar o nome das vocações
<?php
if(!defined('INITIALIZED'))
exit;
$list = 'experience';
if(isset($_REQUEST['list']))
$list = $_REQUEST['list'];
$page = 0;
if(isset($_REQUEST['page']))
$page = min(50, $_REQUEST['page']);
$vocation = '';
if(isset($_REQUEST['vocation']))
$vocation = $_REQUEST['vocation'];
switch($list)
{
case "fist":
$id=Highscores::SKILL_FIST;
$list_name='Fist Fighting';
break;
case "club":
$id=Highscores::SKILL_CLUB;
$list_name='Club Fighting';
break;
case "sword":
$id=Highscores::SKILL_SWORD;
$list_name='Sword Fighting';
break;
case "axe":
$id=Highscores::SKILL_AXE;
$list_name='Axe Fighting';
break;
case "distance":
$id=Highscores::SKILL_DISTANCE;
$list_name='Distance Fighting';
break;
case "shield":
$id=Highscores::SKILL_SHIELD;
$list_name='Shielding';
break;
case "fishing":
$id=Highscores::SKILL_FISHING;
$list_name='Fishing';
break;
case "magic":
$id=Highscores::SKILL__MAGLEVEL;
$list_name='Magic';
break;
default:
$id=Highscores::SKILL__LEVEL;
$list_name='Experience';
break;
}
$world_name = $config['server']['serverNameSite'];
$offset = $page * 100;
$skills = new Highscores($id, 100, $page, $vocation);
$main_content .= '<img class="Title" src="/images/head/Highscores.png" alt="Contentbox headline" /><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD><TD><CENTER><H2>Ranking for '.htmlspecialchars($list_name).' on '.htmlspecialchars($world_name).'';
if($_POST['vocation']){
$vocs = array(
1 => 'Sorcerer',
2 => 'Druid',
3 => 'Paladin',
4 => 'Knight',
5 => 'Master Sorcerer',
6 => 'Elder Druid',
7 => 'Royal Paladin',
8 => 'Elite Knight'
);
$main_content .= '<br />('.$vocs[$_POST['vocation']].')';
}
$main_content .='</H2></CENTER><BR>';
if (!$_GET['list']){
$list = 'experience';
}
$main_content .= '
<center>
<table>
<tr>
<td valign="top"><h2>Choose Vocation:</h2></td>
<td valign="top">
<SCRIPT LANGUAGE="JavaScript">
function selecturl(s) {
var gourl = s.options[s.selectedIndex].value; window.top.location.href = gourl;
}
</SCRIPT>
<FORM>
<SELECT class="textbox" name="urljump" OnChange="selecturl(this)">
<OPTION VALUE="">->'.$vocs[$_GET['vocation']].'</OPTION>
<option value="?subtopic=highscores&list=magic&vocation=1">Sorcerer</option>
<option value="?subtopic=highscores&list=magic&vocation=2">Druid</option>
<option value="?subtopic=highscores&list=magic&vocation=3">Paladin</option>
<option value="?subtopic=highscores&list=magic&vocation=4">Knight</option>
<option value="?subtopic=highscores&list=magic&vocation=5">Master Sorcerer</option>
<option value="?subtopic=highscores&list=magic&vocation=6">Elder Druid</option>
<option value="?subtopic=highscores&list=magic&vocation=7">Royal Paladin</option>
<option value="?subtopic=highscores&list=magic&vocation=8">Elite Knight</option>
</SELECT>
</FORM>
</td>
</tr>
</table>
<center><h2>Best '.$vocs[$_GET['vocation']].' Players:</h2></center>
';
$main_content .= '<br>
<TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%></TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Rank </B></TD><TD WIDTH=75% CLASS=whites><B>Name</B></TD><TD WIDTH=15% CLASS=whites><b>Level</B></TD>';
if($list == "experience")
$main_content .= '<TD CLASS=whites><b>Experience</B></TD>';
//$main_content .= '</TR><TR>';
$main_content .= '</TR>';
$number_of_rows = 0;
foreach($skills as $skill)
{
if($list == "magic")
$value = $skill->getMagLevel();
elseif($list == "experience")
$value = $skill->getLevel();
else
$value = $skill->getScore();
$bgcolor = (($number_of_rows++ % 2 == 1) ? $config['site']['darkborder'] : $config['site']['lightborder']);
$main_content .= '<tr bgcolor="'.$bgcolor.'"><td style="text-align:left">'.($offset + $number_of_rows).'</td><td><a href="?subtopic=characters&name='.urlencode($skill->getName()).'">'.htmlspecialchars($skill->getName()).'</a></td><td>'.$value.'</td>';
if($list == "experience")
$main_content .= '<td>'.$skill->getExperience().'</td>';
$main_content .= '</tr>';
}
$main_content .= '</TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%>';
if($page > 0)
$main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.urlencode($list).'&page='.($page - 1).'&vocation=' . urlencode($vocation) . '" CLASS="size_xxs">Previous Page</A></TD></TR>';
if($page < 50)
$main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.urlencode($list).'&page='.($page + 1).'&vocation=' . urlencode($vocation) . '" CLASS="size_xxs">Next Page</A></TD></TR>';
$main_content .= '</TABLE></TD><TD WIDTH=5%><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD><TD WIDTH=15% VALIGN=top ALIGN=right><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Choose a skill</B></TD></TR><TR BGCOLOR="'.$config['site']['lightborder'].'"><TD><A HREF="?subtopic=highscores&list=experience" CLASS="size_xs">Experience</A><BR><A HREF="?subtopic=highscores&list=magic" CLASS="size_xs">Magic</A><BR><A HREF="?subtopic=highscores&list=shield" CLASS="size_xs">Shielding</A><BR><A HREF="?subtopic=highscores&list=distance" CLASS="size_xs">Distance</A><BR><A HREF="?subtopic=highscores&list=club" CLASS="size_xs">Club</A><BR><A HREF="?subtopic=highscores&list=sword" CLASS="size_xs">Sword</A><BR><A HREF="?subtopic=highscores&list=axe" CLASS="size_xs">Axe</A><BR><A HREF="?subtopic=highscores&list=fist" CLASS="size_xs">Fist</A><BR><A HREF="?subtopic=highscores&list=fishing" CLASS="size_xs">Fishing</A><BR></TD></TR></TABLE></TD><TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD></TR></TABLE>';
info
Grupo: Cavaleiro
Registrado: 14/04/15
Posts: 191
Reputação: +2

Veja se ajuda, fiz baseado em tibia, basta editar o nome das vocações
<?php if(!defined('INITIALIZED')) exit; $list = 'experience'; if(isset($_REQUEST['list'])) $list = $_REQUEST['list']; $page = 0; if(isset($_REQUEST['page'])) $page = min(50, $_REQUEST['page']); $vocation = ''; if(isset($_REQUEST['vocation'])) $vocation = $_REQUEST['vocation']; switch($list) { case "fist": $id=Highscores::SKILL_FIST; $list_name='Fist Fighting'; break; case "club": $id=Highscores::SKILL_CLUB; $list_name='Club Fighting'; break; case "sword": $id=Highscores::SKILL_SWORD; $list_name='Sword Fighting'; break; case "axe": $id=Highscores::SKILL_AXE; $list_name='Axe Fighting'; break; case "distance": $id=Highscores::SKILL_DISTANCE; $list_name='Distance Fighting'; break; case "shield": $id=Highscores::SKILL_SHIELD; $list_name='Shielding'; break; case "fishing": $id=Highscores::SKILL_FISHING; $list_name='Fishing'; break; case "magic": $id=Highscores::SKILL__MAGLEVEL; $list_name='Magic'; break; default: $id=Highscores::SKILL__LEVEL; $list_name='Experience'; break; } $world_name = $config['server']['serverNameSite']; $offset = $page * 100; $skills = new Highscores($id, 100, $page, $vocation); $main_content .= '<img class="Title" src="/images/head/Highscores.png" alt="Contentbox headline" /><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD><TD><CENTER><H2>Ranking for '.htmlspecialchars($list_name).' on '.htmlspecialchars($world_name).''; if($_POST['vocation']){ $vocs = array( 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight', 5 => 'Master Sorcerer', 6 => 'Elder Druid', 7 => 'Royal Paladin', 8 => 'Elite Knight' ); $main_content .= '<br />('.$vocs[$_POST['vocation']].')'; } $main_content .='</H2></CENTER><BR>'; if (!$_GET['list']){ $list = 'experience'; } $main_content .= ' <center> <table> <tr> <td valign="top"><h2>Choose Vocation:</h2></td> <td valign="top"> <SCRIPT LANGUAGE="JavaScript"> function selecturl(s) { var gourl = s.options[s.selectedIndex].value; window.top.location.href = gourl; } </SCRIPT> <FORM> <SELECT class="textbox" name="urljump" OnChange="selecturl(this)"> <OPTION VALUE="">->'.$vocs[$_GET['vocation']].'</OPTION> <option value="?subtopic=highscores&list=magic&vocation=1">Sorcerer</option> <option value="?subtopic=highscores&list=magic&vocation=2">Druid</option> <option value="?subtopic=highscores&list=magic&vocation=3">Paladin</option> <option value="?subtopic=highscores&list=magic&vocation=4">Knight</option> <option value="?subtopic=highscores&list=magic&vocation=5">Master Sorcerer</option> <option value="?subtopic=highscores&list=magic&vocation=6">Elder Druid</option> <option value="?subtopic=highscores&list=magic&vocation=7">Royal Paladin</option> <option value="?subtopic=highscores&list=magic&vocation=8">Elite Knight</option> </SELECT> </FORM> </td> </tr> </table> <center><h2>Best '.$vocs[$_GET['vocation']].' Players:</h2></center> '; $main_content .= '<br> <TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%></TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Rank </B></TD><TD WIDTH=75% CLASS=whites><B>Name</B></TD><TD WIDTH=15% CLASS=whites><b>Level</B></TD>'; if($list == "experience") $main_content .= '<TD CLASS=whites><b>Experience</B></TD>'; //$main_content .= '</TR><TR>'; $main_content .= '</TR>'; $number_of_rows = 0; foreach($skills as $skill) { if($list == "magic") $value = $skill->getMagLevel(); elseif($list == "experience") $value = $skill->getLevel(); else $value = $skill->getScore(); $bgcolor = (($number_of_rows++ % 2 == 1) ? $config['site']['darkborder'] : $config['site']['lightborder']); $main_content .= '<tr bgcolor="'.$bgcolor.'"><td style="text-align:left">'.($offset + $number_of_rows).'</td><td><a href="?subtopic=characters&name='.urlencode($skill->getName()).'">'.htmlspecialchars($skill->getName()).'</a></td><td>'.$value.'</td>'; if($list == "experience") $main_content .= '<td>'.$skill->getExperience().'</td>'; $main_content .= '</tr>'; } $main_content .= '</TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%>'; if($page > 0) $main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.urlencode($list).'&page='.($page - 1).'&vocation=' . urlencode($vocation) . '" CLASS="size_xxs">Previous Page</A></TD></TR>'; if($page < 50) $main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.urlencode($list).'&page='.($page + 1).'&vocation=' . urlencode($vocation) . '" CLASS="size_xxs">Next Page</A></TD></TR>'; $main_content .= '</TABLE></TD><TD WIDTH=5%><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD><TD WIDTH=15% VALIGN=top ALIGN=right><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Choose a skill</B></TD></TR><TR BGCOLOR="'.$config['site']['lightborder'].'"><TD><A HREF="?subtopic=highscores&list=experience" CLASS="size_xs">Experience</A><BR><A HREF="?subtopic=highscores&list=magic" CLASS="size_xs">Magic</A><BR><A HREF="?subtopic=highscores&list=shield" CLASS="size_xs">Shielding</A><BR><A HREF="?subtopic=highscores&list=distance" CLASS="size_xs">Distance</A><BR><A HREF="?subtopic=highscores&list=club" CLASS="size_xs">Club</A><BR><A HREF="?subtopic=highscores&list=sword" CLASS="size_xs">Sword</A><BR><A HREF="?subtopic=highscores&list=axe" CLASS="size_xs">Axe</A><BR><A HREF="?subtopic=highscores&list=fist" CLASS="size_xs">Fist</A><BR><A HREF="?subtopic=highscores&list=fishing" CLASS="size_xs">Fishing</A><BR></TD></TR></TABLE></TD><TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD></TR></TABLE>';
Amigo aqui n abriu pagina ficou tudo branco, tenho que fazer mas alguma coisa.
Editado Junho 7 por Xtudomuito
info
Grupo: Marquês
Registrado: 26/02/12
Posts: 1.1k
Reputação: +369
Gênero: Masculino
Char no Tibia: Tibjohiand Tito

Negativo amigo, está perfeito o código.
info
Grupo: Cavaleiro
Registrado: 14/04/15
Posts: 191
Reputação: +2

entao cara o que tenho que fazer. faz o mini tutorial pra min add no meu site, onde tenho que coloca.
Como fis:
em layouts/nno/layout.php coloquei:
<li><a href="index.php?subtopic=topvocation"><b>TOP Profession Players</b></a></li>
crie o arquivo php com o nome topvocation e colei o que mandou:
- <?php
- if(!defined('INITIALIZED'))
- exit;
- $list = 'experience';
- if(isset($_REQUEST['list']))
- $list = $_REQUEST['list'];
- $page = 0;
- if(isset($_REQUEST['page']))
- $page = min(50, $_REQUEST['page']);
- $vocation = '';
- if(isset($_REQUEST['vocation']))
- $vocation = $_REQUEST['vocation'];
- switch($list)
- {
- case "fist":
-
$id=Highscores
SKILL_FIST;
- $list_name='Fist Fighting';
- break;
- case "club":
-
$id=Highscores
SKILL_CLUB;
- $list_name='Club Fighting';
- break;
- case "sword":
-
$id=Highscores
SKILL_SWORD;
- $list_name='Sword Fighting';
- break;
- case "axe":
-
$id=Highscores
SKILL_AXE;
- $list_name='Axe Fighting';
- break;
- case "distance":
-
$id=Highscores
SKILL_DISTANCE;
- $list_name='Distance Fighting';
- break;
- case "shield":
-
$id=Highscores
SKILL_SHIELD;
- $list_name='Shielding';
- break;
- case "fishing":
-
$id=Highscores
SKILL_FISHING;
- $list_name='Fishing';
- break;
- case "magic":
-
$id=Highscores
SKILL__MAGLEVEL;
- $list_name='Magic';
- break;
- default:
-
$id=Highscores
SKILL__LEVEL;
- $list_name='Experience';
- break;
- }
- $world_name = $config['server']['serverNameSite'];
- $offset = $page * 100;
- $skills = new Highscores($id, 100, $page, $vocation);
- $main_content .= '<img class="Title" src="/images/head/Highscores.png" alt="Contentbox headline" /><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD><TD><CENTER><H2>Ranking for '.htmlspecialchars($list_name).' on '.htmlspecialchars($world_name).'';
- if($_POST['vocation']){
- $vocs = array(
- 1 => 'Sorcerer',
- 2 => 'Druid',
- 3 => 'Paladin',
- 4 => 'Knight',
- 5 => 'Master Sorcerer',
- 6 => 'Elder Druid',
- 7 => 'Royal Paladin',
- 8 => 'Elite Knight'
- );
- $main_content .= '<br />('.$vocs[$_POST['vocation']].')';
- }
- $main_content .='</H2></CENTER><BR>';
- if (!$_GET['list']){
- $list = 'experience';
- }
- $main_content .= '
- <center>
- <table>
- <tr>
- <td valign="top"><h2>Choose Vocation:</h2></td>
- <td valign="top">
- <SCRIPT LANGUAGE="JavaScript">
- function selecturl(s) {
- var gourl = s.options[s.selectedIndex].value; window.top.location.href = gourl;
- }
- </SCRIPT>
- <FORM>
- <SELECT class="textbox" name="urljump" OnChange="selecturl(this)">
- <OPTION VALUE="">->'.$vocs[$_GET['vocation']].'</OPTION>
- <option value="?subtopic=highscores&list=magic&vocation=1">Sorcerer</option>
- <option value="?subtopic=highscores&list=magic&vocation=2">Druid</option>
- <option value="?subtopic=highscores&list=magic&vocation=3">Paladin</option>
- <option value="?subtopic=highscores&list=magic&vocation=4">Knight</option>
- <option value="?subtopic=highscores&list=magic&vocation=5">Master Sorcerer</option>
- <option value="?subtopic=highscores&list=magic&vocation=6">Elder Druid</option>
- <option value="?subtopic=highscores&list=magic&vocation=7">Royal Paladin</option>
- <option value="?subtopic=highscores&list=magic&vocation=8">Elite Knight</option>
- </SELECT>
- </FORM>
- </td>
- </tr>
- </table>
- <center><h2>Best '.$vocs[$_GET['vocation']].' Players:</h2></center>
- ';
- $main_content .= '<br>
- <TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%></TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Rank </B></TD><TD WIDTH=75% CLASS=whites><B>Name</B></TD><TD WIDTH=15% CLASS=whites><b>Level</B></TD>';
- if($list == "experience")
- $main_content .= '<TD CLASS=whites><b>Experience</B></TD>';
- //$main_content .= '</TR><TR>';
- $main_content .= '</TR>';
- $number_of_rows = 0;
- foreach($skills as $skill)
- {
- if($list == "magic")
- $value = $skill->getMagLevel();
- elseif($list == "experience")
- $value = $skill->getLevel();
- else
- $value = $skill->getScore();
- $bgcolor = (($number_of_rows++ % 2 == 1) ? $config['site']['darkborder'] : $config['site']['lightborder']);
- $main_content .= '<tr bgcolor="'.$bgcolor.'"><td style="text-align:left">'.($offset + $number_of_rows).'</td><td><a href="?subtopic=characters&name='.urlencode($skill->getName()).'">'.htmlspecialchars($skill->getName()).'</a></td><td>'.$value.'</td>';
- if($list == "experience")
- $main_content .= '<td>'.$skill->getExperience().'</td>';
- $main_content .= '</tr>';
- }
- $main_content .= '</TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%>';
- if($page > 0)
- $main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.urlencode($list).'&page='.($page - 1).'&vocation=' . urlencode($vocation) . '" CLASS="size_xxs">Previous Page</A></TD></TR>';
- if($page < 50)
- $main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.urlencode($list).'&page='.($page + 1).'&vocation=' . urlencode($vocation) . '" CLASS="size_xxs">Next Page</A></TD></TR>';
- $main_content .= '</TABLE></TD><TD WIDTH=5%><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD><TD WIDTH=15% VALIGN=top ALIGN=right><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Choose a skill</B></TD></TR><TR BGCOLOR="'.$config['site']['lightborder'].'"><TD><A HREF="?subtopic=highscores&list=experience" CLASS="size_xs">Experience</A><BR><A HREF="?subtopic=highscores&list=magic" CLASS="size_xs">Magic</A><BR><A HREF="?subtopic=highscores&list=shield" CLASS="size_xs">Shielding</A><BR><A HREF="?subtopic=highscores&list=distance" CLASS="size_xs">Distance</A><BR><A HREF="?subtopic=highscores&list=club" CLASS="size_xs">Club</A><BR><A HREF="?subtopic=highscores&list=sword" CLASS="size_xs">Sword</A><BR><A HREF="?subtopic=highscores&list=axe" CLASS="size_xs">Axe</A><BR><A HREF="?subtopic=highscores&list=fist" CLASS="size_xs">Fist</A><BR><A HREF="?subtopic=highscores&list=fishing" CLASS="size_xs">Fishing</A><BR></TD></TR></TABLE></TD><TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD></TR></TABLE>';
e add tb no index:

Editado Junho 8 por Xtudomuito
info
Grupo: Herói
Registrado: 01/05/08
Posts: 2.6k
Reputação: +536
Gênero: Masculino

index.php?subtopic=topplayers&profa=Naruto
vc acha que eu fis algo de errado, poderia dizer o que tenho que fazer de certo.
De acordo com o código dele, o request está para vocation, ou seja:
index.php?subtopic=topplayers&vocation=Naruto
info
Grupo: Cavaleiro
Registrado: 14/04/15
Posts: 191
Reputação: +2

tenho que coloca isso no meu:
index.php?subtopic=topplayers&vocation=Naruto
info
Grupo: Herói
Registrado: 01/05/08
Posts: 2.6k
Reputação: +536
Gênero: Masculino

O link para verificar a vocação diretamente sim, pois você estava tentando usar outro.tenho que coloca isso no meu:
index.php?subtopic=topplayers&vocation=Naruto[/size] [/size]
Agora pra acessar a página, basta acessar:
seusite.com/index.php?subtopic=topplayers
info
Grupo: Cavaleiro
Registrado: 14/04/15
Posts: 191
Reputação: +2

O link para verificar a vocação diretamente sim, pois você estava tentando usar outro.
Agora pra acessar a página, basta acessar:
seusite.com/index.php?subtopic=topplayers
cara coloquei tudo pra topplayers mas ainda fica igual a imagem que mostrei ai em cima. n sei o que fazer e preciso muito.
<li><a href="index.php?subtopic=topplayers"><b>TOP Profession Players</b></a></li>
info
Grupo: Herói
Registrado: 01/05/08
Posts: 2.6k
Reputação: +536
Gênero: Masculino

cara coloquei tudo pra topplayers mas ainda fica igual a imagem que mostrei ai em cima. n sei o que fazer e preciso muito.
<li><a href="index.php?subtopic=topplayers"><b>TOP Profession Players</b></a></li>
Então o script não está compatível com seu site ou está com algum erro...problema que não gera erro...
Testei n funcionou
Editado Junho 8 por xXADMXx
info
Grupo: Cavaleiro
Registrado: 14/04/15
Posts: 191
Reputação: +2

Então o script não está compatível com seu site ou está com algum erro...problema que não gera erro...
então vou espera o cara que criou pra ver o que ele acha, e dizer o que eu fis de errado. Obrigado e reputado.




info
Grupo: Cavaleiro
Registrado: 14/04/15
Posts: 191
Reputação: +2
Bom queria coloca no meu site o rank vocation, pra mostra quem é mas forte na sua vocation. Alguém poderia arruma, meu Server é anime tem muitas vocation.
queria igual a esse:
Editado Junho 5 por Xtudomuito