in my ranking some class are not existing.
like "Girl Swordsman".In my ranking page.
Girl Swordsman represented by # Like "128"
screenshot below for example.
Printable View
in my ranking some class are not existing.
like "Girl Swordsman".In my ranking page.
Girl Swordsman represented by # Like "128"
screenshot below for example.
Bro maybe this thing can aid you :thumbup:
just go to your ranCP folder/includes find rank.php
or any .php format that related to rankings
and use ths code below.
My apology if cant help you now in private but leave some off messages.... God BlessPHP Code:<?
require("config.php");
function getC ($class) {
if ($class == 2) { $char = "Swordsman"; }
if ($class == 1) { $char = "Brawler"; }
if ($class == 4) { $char = "Archer"; }
if ($class == 8) { $char = "Shaman"; }
if ($class == 16) { $char = "ExtremeMale"; }
if ($class == 32) { $char = "ExtremeWoman"; }
if ($class == 256) { $char = "MaleArcher"; }
if ($class == 128) { $char = "FemaleSwordsman"; }
if ($class == 64) { $char = "FemaleBrawler"; }
if ($class == 512) { $char = "MaleShaman"; }
return $char;
}