• 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 MYACC, add anothers vocations in create character.

EduardoQuintela

New Member
Joined
Mar 10, 2014
Messages
27
Reaction score
1
Hello Community,


I need to add a new vocation when I create a new character, how do I set up a new character sample? I'm using the latest version of myacc.
 
Edit this in config.php
Code:
    // new character config
    'character_samples' => array( // vocations, format: ID_of_vocation => 'Name of Character to copy'
        //0 => 'Rook Sample',
        1 => 'Sorcerer Sample',
        2 => 'Druid Sample',
        3 => 'Paladin Sample',
        4 => 'Knight Sample'
    ),

Where 1,2,3,4 is id in vocations.xml, and you will also need to create a new sample in players table to copy.
 
Back
Top