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

TFS 1.X+ Znote AAC new vocations apear Unknown

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
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:
Solution
available_vocations has to be configured for character creation. You might have lots of vocations on your ots, but you don't want players to be able to start their character with the best vocations.

Also check vocations_gain to make sure they get correct calculated hp/mana/cap when character is created.

And check $config['player'] for starting level and skills configuration.
available_vocations has to be configured for character creation. You might have lots of vocations on your ots, but you don't want players to be able to start their character with the best vocations.

Also check vocations_gain to make sure they get correct calculated hp/mana/cap when character is created.

And check $config['player'] for starting level and skills configuration.
 
Solution
Back
Top