Server Ranking
Confira os principais rankings em nosso servidor.
- PVP
- PK
- LEVEL
- SIEGE
- BOSSES
- OLY POINTS
- Olympiad
// Use jQuery para carregar o conteúdo do list.php
jQuery(document).ready(function($) {
$.ajax({
url: '/codes/rankings/toppvp.php',
type: 'GET',
success: function(response) {
$('#Ranking_PVP').html(response);
},
error: function() {
$('#Ranking_PVP').html('
Erro ao carregar a lista de tabelas.
'); } }); });
// Use jQuery para carregar o conteúdo do list.php
jQuery(document).ready(function($) {
$.ajax({
url: '/codes/rankings/toppk.php',
type: 'GET',
success: function(response) {
$('#Ranking_PK').html(response);
},
error: function() {
$('#Ranking_PK').html('
Erro ao carregar a lista de tabelas.
'); } }); });
// Use jQuery para carregar o conteúdo do list.php
jQuery(document).ready(function($) {
$.ajax({
url: '/codes/rankings/toplevel.php',
type: 'GET',
success: function(response) {
$('#ranking_level').html(response);
},
error: function() {
$('#ranking_level').html('
Erro ao carregar a lista de tabelas.
'); } }); });