• 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!

AAC Znote aac

Toggee

New Member
Joined
May 28, 2025
Messages
10
Reaction score
1
Hi.

so i cant get promoted vocations to show on my website..


I think the problem is in the Database cuz the vocation id never change. only the promotion get set from a 0 to a 1 or 2 depending on if the char is only promoted once or twice.

i want it so you can see on the site witch promotion "stage" you are in --> Druid --> Elder Druid --> Super Druid.







$config['vocations'] = array(
0 => array(
'name' => 'No vocation',
'fromVoc' => false
),
1 => array(
'name' => 'Sorcerer',
'fromVoc' => false
),
2 => array(
'name' => 'Druid',
'fromVoc' => false
),
3 => array(
'name' => 'Paladin',
'fromVoc' => false
),
4 => array(
'name' => 'Knight',
'fromVoc' => false
),
5 => array(
'name' => 'Master Sorcerer',
'fromVoc' => 1
),
6 => array(
'name' => 'Elder Druid',
'fromVoc' => 2
),
7 => array(
'name' => 'Royal Paladin',
'fromVoc' => 3
),
8 => array(
'name' => 'Elite Knight',
'fromVoc' => 4
)

);
 
Back
Top