Postado Abril 29, 2020 5 anos Boa noite, alguem poderia fazer um script para ele pegar a outfit do personagem e fazer ela aparecer no rank na frente do nome ?? Script do TOP 10 PLAYERS \/ Spoiler <?php // Configuration $maxGroupValue = 2; // Maximum group id, players with higher group id than this won't be shown $playersShowLimit = 10; // How much positions should be shown // ------------- include('config.php'); $ci =& get_instance(); $ci->load->database(); $loadPlayers = $ci->db->query("SELECT `name`, `group_id`, `world_id`, `level`, `vocation` FROM `players` WHERE `group_id` <= ".$maxGroupValue." ORDER BY `level` DESC LIMIT ".$playersShowLimit.""); ?> <div id="vt_modtopserverplayers"> <table cellspacing="0" cellpadding="3" border="0" width="100%"> <?php $counter = 1; foreach($loadPlayers->result() as $player): ?> <tr> <td width="19"> <div class="number"><strong><?php echo $counter; ?>.</strong></div> </td> <td> <?php echo $player->vocation; ?> </td> <td> <a href="<?php echo WEBSITE; ?>/index.php/character/view/<?php echo $player->name; ?>"><strong><?php echo $player->name; ?></strong></a><br /> </td> <td> </td> <td> <?php echo $player->level; ?> </td> </tr> <?php $counter++; endforeach; ?> </table> </div> Editado Abril 29, 2020 5 anos por dbofurie (veja o histórico de edições)
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.