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

Znote acc Problem Please Help __

vicki24

Member
Joined
Feb 2, 2017
Messages
71
Reaction score
7
Location
Europe
Hello i got a question how do i make so when ppl create a character they dont choice city/vocation.
i want so they instant come to rook after create a character thanks for help __
 
Solution
Edit config.php:

ZnoteAAC/config.php at 5f049e75a689c9f6290eb815b2533167c3e2109d · Znote/ZnoteAAC · GitHub
PHP:
$config['available_vocations'] = array(0); // vocation id 0 = no vocation

ZnoteAAC/config.php at 5f049e75a689c9f6290eb815b2533167c3e2109d · Znote/ZnoteAAC · GitHub
PHP:
$config['available_towns'] = array(30); // Change to town id of rook
Probably not neccesary since no vocation has a force town option, but if you don't open up for vocation then there is no point having default towns in.

ZnoteAAC/config.php at 5f049e75a689c9f6290eb815b2533167c3e2109d · Znote/ZnoteAAC · GitHub
PHP:
'novocation' => array( // vocation id 0 (No vocation) special settings
    'level' => 1, // Level
    'forceTown' => true...
Edit config.php:

ZnoteAAC/config.php at 5f049e75a689c9f6290eb815b2533167c3e2109d · Znote/ZnoteAAC · GitHub
PHP:
$config['available_vocations'] = array(0); // vocation id 0 = no vocation

ZnoteAAC/config.php at 5f049e75a689c9f6290eb815b2533167c3e2109d · Znote/ZnoteAAC · GitHub
PHP:
$config['available_towns'] = array(30); // Change to town id of rook
Probably not neccesary since no vocation has a force town option, but if you don't open up for vocation then there is no point having default towns in.

ZnoteAAC/config.php at 5f049e75a689c9f6290eb815b2533167c3e2109d · Znote/ZnoteAAC · GitHub
PHP:
'novocation' => array( // vocation id 0 (No vocation) special settings
    'level' => 1, // Level
    'forceTown' => true,
    'townId' => 30
),
Change to correct town ID for rook (Remere Map Editor -> CTRL + T to view town names and ID).
 
Solution
One more question how do i give website accses to my char_

If you are using Znote, in config.php search for something like this:
$config['page_admin_access'] = array(
'YourAccountHere'
);
Replace YourAccountHere with the account that you want access.
If you want to give admin access for more than one account, just do this:

$config['page_admin_access'] = array(
'AccountNumber1',
'AccountNumber2'
);
 
Back
Top