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

Help to change config

Joined
Jun 24, 2009
Messages
103
Reaction score
0
Location
Sweden
Hello any1 now how to solve this problem i want on (Gesiors acc) When you press button Create Character It Comes Up Fill In ur name as normal Choose Vocation Etc.. and also i want to have choose city (venore,thais.ab Etc etc,,) any1 now how to configure that?
HTML:
$config['site']['newchar_towns'][0] = array(1);
$config['site']['newchar_towns'][1] = array(1);
// sample, if all players should spawn in one city (city with ID 4):          $config['site']['newchar_towns'] = array(4);

// list of vocations on ots (world 0)
$vocation_name[0][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight'); // id => 'name' , $vocation_name[0] - promotion level 0, $vocation_name[0] - for world ID 0
$vocation_name[0][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight'); // id => 'name' , $vocation_name[1] - promotion level 1, $vocation_name[0] - for world ID 0
// list of vocations on ots (world 1)
$vocation_name[1][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight'); // id => 'name' , $vocation_name[0] - promotion level 0, $vocation_name[1] - for world ID 1
$vocation_name[1][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight'); // id => 'name' , $vocation_name[1] - promotion level 1, $vocation_name[1] - for world ID 1

// list of towns on ots
$towns_list[0] = array(1 => 'Yalahar', 2 => 'Carlin', 3 => 'Ab dendriel', 4 => 'Kazordoon', 5 => 'Thais', 6 => 'Venore', 7 => 'Darashia', 8 => 'Ankrahmun',  12 => 'Liberty Bay', 9 => 'Edron', 10 => 'Port Hope'); // list of towns, id => 'name', $towns_list[0] - for world id 0
$towns_list[1] = array(1 => 'Yalahar', 2 => 'Carlin', 3 => 'Ab dendriel', 4 => 'Kazordoon', 5 => 'Thais', 6 => 'Venore', 7 => 'Darashia', 8 => 'Ankrahmun',  12 => 'Liberty Bay', 9 => 'Edron', 10 => 'Port Hope'); // list of towns, id => 'name', $towns_list[0] - for world id 1

Thankz in regardz ill rep++
 
Last edited:
Back
Top