[Canary][OTServBR-Global][GesiorAAC][MyAAC] Set up Initial Character

Tutorial to set up the initial character using GesiorAAC and MyAAC.

Canary:

GesiorAAC

Config/config.php:

- Set up the list of towns:

$towns_list = array(
    1 => 'Montag',
    2 => 'Tihamah',
    3 => 'Tps Room',
    4 => 'Nahag Village',
    5 => 'Alexandria',
    6 => 'Thalom',
    7 => 'Katorga',
    8 => 'Strongarm'	
);

- Set up character creation and the starting town(s):

# Create Character Options
$config['site']['newchar_vocations'] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
$config['site']['newchar_towns'] = array(1, 2, 4, 5, 6, 7, 8);
MyAAC

config.php:

- Set up the list of towns:

// list of towns
// if you use TFS 1.3 with support for 'towns' table in database, then you can ignore this - it will be configured automatically (generated from your .OTBM map)
'towns' => array(
    1 => 'Montag',
    2 => 'Tihamah',
    3 => 'Tps Room',
    4 => 'Nahag Village',
    5 => 'Alexandria',
    6 => 'Thalom',
    7 => 'Katorga',
    8 => 'Strongarm'
),

- Set up character creation:

// 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'
),

- Set up the initial town(s):

// town list used when creating character
// won't be displayed if there is only one item (rookgaard for example)
'character_towns' => array(1,2,4,5,6,7,8),

OTServBR-Global:

GesiorAAC

Config/config.php:

  • To set up initial character in Dawnport:

  • Set up the list of towns:

$towns_list = array(
	1 => 'Dawnport Tutorial',
	2 => 'Dawnport',
	3 => 'Rookgaard',
	4 => 'Island of Destiny',
	5 => 'Ab\'Dendriel',
	6 => 'Carlin',
	7 => 'Kazordoon',
	8 => 'Thais',
	9 => 'Venore',
	10 => 'Ankrahmun',
	11 => 'Edron',
	12 => 'Farmine',
	13 => 'Darashia',
	14 => 'Liberty Bay',
	15 => 'Port Hope',
	16 => 'Svargrond',
	17 => 'Yalahar',
	18 => 'Gray Beach',
	19 => 'Krailos',
	20 => 'Rathleton',
	21 => 'Roshamuul',
	22 => 'Issavi',
	23 => 'Event Room',
	24 => 'Cobra Bastion',
	25 => 'Bounac',
	26 => 'Feyrist',
	27 => 'Gnomprona',
	28 => 'Marapur'
);
  • Set up character creation and the starting town:

# Create Character Options
$config['site']['newchar_vocations'] = array(0 => 'Rook Sample');
$config['site']['newchar_towns'] = array(1);
  • To set up initial character in Mainland:

  • Set up the list of towns:

$towns_list = array(
	1 => 'Dawnport Tutorial',
	2 => 'Dawnport',
	3 => 'Rookgaard',
	4 => 'Island of Destiny',
	5 => 'Ab\'Dendriel',
	6 => 'Carlin',
	7 => 'Kazordoon',
	8 => 'Thais',
	9 => 'Venore',
	10 => 'Ankrahmun',
	11 => 'Edron',
	12 => 'Farmine',
	13 => 'Darashia',
	14 => 'Liberty Bay',
	15 => 'Port Hope',
	16 => 'Svargrond',
	17 => 'Yalahar',
	18 => 'Gray Beach',
	19 => 'Krailos',
	20 => 'Rathleton',
	21 => 'Roshamuul',
	22 => 'Issavi',
	23 => 'Event Room',
	24 => 'Cobra Bastion',
	25 => 'Bounac',
	26 => 'Feyrist',
	27 => 'Gnomprona',
	28 => 'Marapur'
);
  • Set up character creation and the starting town(s):

$config['site']['newchar_vocations'] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
$config['site']['newchar_towns'] = array(6, 7, 8, 9);
MyAAC

config.php:

  • To set up initial character in Dawnport:

  • Set up the list of towns:

// list of towns
// if you use TFS 1.3 with support for 'towns' table in database, then you can ignore this - it will be configured automatically (generated from your .OTBM map)
'towns' => array(
	1 => 'Dawnport Tutorial',
	2 => 'Dawnport',
	3 => 'Rookgaard',
	4 => 'Island of Destiny',
	5 => 'Ab Dendriel',
	6 => 'Carlin',
	7 => 'Kazordoon',
	8 => 'Thais',
	9 => 'Venore',
	10 => 'Ankrahmun',
	11 => 'Edron',
	12 => 'Farmine',
	13 => 'Darashia',
	14 => 'Liberty Bay',
	15 => 'Port Hope',
	16 => 'Svargrond',
	17 => 'Yalahar',
	18 => 'Gray Beach',
	19 => 'Krailos',
	20 => 'Rathleton',
	21 => 'Roshamuul',
	22 => 'Issavi',
	23 => 'Event Room',
	24 => 'Cobra Bastion',
	25 => 'Bounac',
	26 => 'Feyrist',
	27 => 'Gnomprona',
	28 => 'Marapur'
 ),
  • Set up character creation:

// 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'
),
  • Set up the starting town:

// town list used when creating character
// won't be displayed if there is only one item (rookgaard for example)
'character_towns' => array(1),
  • To set up initial character in Mainland:

  • Set up the list of towns:

// list of towns
// if you use TFS 1.3 with support for 'towns' table in database, then you can ignore this - it will be configured automatically (generated from your .OTBM map)
'towns' => array(
	1 => 'Dawnport Tutorial',
	2 => 'Dawnport',
	3 => 'Rookgaard',
	4 => 'Island of Destiny',
	5 => 'Ab Dendriel',
	6 => 'Carlin',
	7 => 'Kazordoon',
	8 => 'Thais',
	9 => 'Venore',
	10 => 'Ankrahmun',
	11 => 'Edron',
	12 => 'Farmine',
	13 => 'Darashia',
	14 => 'Liberty Bay',
	15 => 'Port Hope',
	16 => 'Svargrond',
	17 => 'Yalahar',
	18 => 'Gray Beach',
	19 => 'Krailos',
	20 => 'Rathleton',
	21 => 'Roshamuul',
	22 => 'Issavi',
	23 => 'Event Room',
	24 => 'Cobra Bastion',
	25 => 'Bounac',
	26 => 'Feyrist',
	27 => 'Gnomprona',
	28 => 'Marapur'
 ),
  • Set up character creation:

// 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'
),
  • Set up the initial town(s):

// town list used when creating character
// won't be displayed if there is only one item (rookgaard for example)
'character_towns' => array(6,7,8,9),