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

[Gesior Acc] Select city when create character

GuHB

Member
Joined
Dec 14, 2009
Messages
630
Reaction score
9
Location
Brazil
Well, i dont found how to add to choise 2 or more cities when player are creating account..

They can select the vocations but dont the City.

Here its my Config.php

Code:
// CHARACTER config, format: ID_of_vocation => 'Name of Character to copy', load vocation name from $vocation_name[0] (below)
$config['site']['newchar_vocations'][0] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
// sample, if rook only:             $config['site']['newchar_vocations'][0] = array(0 => 'Rook Sample');
$config['site']['newchar_towns'][0] = array(1,2);
// sample, if all players should spawn in one city (city with ID 4):          
$config['site']['newchar_towns'] = array(1,2);

// 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
$vocation_name[0][2] = array(1 => 'Magican Sorcerer', 2 => 'Mystic Druid', 3 => 'Elven Paladin', 4 => 'Templar Knight'); // id => 'name' , $vocation_name[2] - promotion level 1, $vocation_name[0] - for world ID 0

// list of towns on ots
$towns_list[0] = array(1 => 'Inittria', 2 => 'Excazian', 3 => 'Frizzo'); // list of towns, id => 'name', $towns_list[0] - for world id 0

Thanks.
 
Back
Top