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
)
);
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
)
);