• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Super promotion~

Minimii

New Member
Joined
Dec 3, 2008
Messages
749
Reaction score
3
Location
Sweden, Piteå
Why doesn't it shows the vocation if your super promoted on highscores/character list/online list?

--acc.JPG


How can I fix so it says like Super Knight/Super Druid or something.
 
in config.php of aac

PHP:
// list of vocations on ots
$vocation_name[0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight');
$vocation_name[1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight');
$vocation_name[2] = array(1 => 'Witcher', 2 => 'Priest', 3 => 'Sniper', 4 => 'Gladiator');
// list of towns on ots
 
in config.php of aac

PHP:
// list of vocations on ots
$vocation_name[0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight');
$vocation_name[1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight');
$vocation_name[2] = array(1 => 'Witcher', 2 => 'Priest', 3 => 'Sniper', 4 => 'Gladiator');
// list of towns on ots

That made all online players get super promotion.
 
I'm not sure about it, but try this :-

// list of vocations on ots
$vocation_name[1] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight');
$vocation_name[2] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight');
$vocation_name[3] = array(1 => 'Witcher', 2 => 'Priest', 3 => 'Sniper', 4 => 'Gladiator');
// list of towns on ots
 
Back
Top