roriscrave
Advanced OT User
- Joined
- Dec 7, 2011
- Messages
- 1,210
- Solutions
- 35
- Reaction score
- 206
HI! In my game:
vocation 1 = Tanker
vocation 13= Healer
vocation 25= Damager
vocation 34 = Blocker...
(like in my vocation.xml)
so i added in config.php
but in znoteAcc only appear the fist vocation, and other appear unknown. why?
solved: need to edit here too
vocation 1 = Tanker
vocation 13= Healer
vocation 25= Damager
vocation 34 = Blocker...
(like in my vocation.xml)
so i added in config.php
PHP:
$config['vocations'] = array(
0 => array(
'name' => 'No vocation',
'fromVoc' => false
),
1 => array(
'name' => 'Tanker',
'fromVoc' => false
),
13 => array(
'name' => 'Healer',
'fromVoc' => false
),
25 => array(
'name' => 'Damager',
'fromVoc' => false
),
34 => array(
'name' => 'Blocker',
'fromVoc' => false
),
but in znoteAcc only appear the fist vocation, and other appear unknown. why?
solved: need to edit here too
Code:
$config['available_vocations'] =
Last edited: