OpenTibiaBR
GithubDiscordSponsor
  • Home
    • 📖Welcome!
    • 💵Donate
  • OpenTibiaBR
    • 🖥️Projects
      • 🐦Canary
        • About
        • Getting Started
          • Compiling
            • Linux
              • [Linux] Compiling Canary Sources
            • Windows
              • Visual Studio
                • [Windows][VC2022][CMake] Compiling Canary Sources
                • [Windows][VC2022][Solution] Compiling Canary Sources
              • WSL
                • [WSL] Compiling Canary Sources
          • Installing
            • aaPanel
              • [Linux] Canary + aaPanel + MyAAC
            • Docker
              • [Docker] Canary + MariaDB + MyAAC
            • Linux
              • Nginx + MariaDB + MyAAC
            • Windows
              • Uniform Server
                • [Windows][Basic] Canary + Uniform Server + MyAAC
              • XAMPP
                • [Windows][Advanced] Canary + XAMPP + MyAAC
        • Tutorials
          • Basic
            • Auto Backup Server Database
            • Auto Restart and Linux Logs
            • Custom Bestiary / Prey with Canary Monster Editor
            • Event Schedule Canary / OTServBR-Global
            • How to make a custom server with Canary
            • How to reset players in your database
            • How to secure a Linux server
            • SSL Certificates
            • Webhook Discord
            • [Outdated] Custom Bestiary / Prey
            • [Linux] Backup + Upload - Google Drive
            • [Linux] How to install Linux headers
            • VPS Linux
            • [Windows] SSL/HTTPS Certificate with XAMPP
          • Mapping
            • [Windows] Remere's Map Editor - Opening Canary / OTServBR-Global Map
            • [Windows] Remere's Map Editor - Converting map server id to client id
          • Programming & Scripting
            • How to add a new vocation
            • Revscriptsys
            • Guide Lua Objects
            • How to get raceId for monsters
          • Websites
            • [Canary][OTServBR-Global][GesiorAAC][MyAAC] Set up Initial Character
          • Miscellaneous
            • Useful Tutorials
            • Video Tutorials
      • 🗺️Remere's Map Editor
        • About
        • Getting Started
          • Linux
            • [Linux] Compiling Remere's Map Editor Sources
          • Windows
            • WSL
              • [WSL] Compiling Remere's Map Editor Sources
            • Visual Studio
              • [Windows][VC2022][CMake] Compiling Remere's Map Editor Sources
              • [Windows][VC2022][Solution] Compiling Remere's Map Editor Sources
      • 🎮OTClient Redemption
        • About
        • Getting Started
          • Android
            • [Android] Compiling OTClient Redemption Sources
          • Linux
            • [Linux] Compiling OTClient Redemption Sources
          • Windows
            • WSL
              • [WSL] Compiling OTClient Redemption Sources
            • Visual Studio
              • [Windows][VC2022][CMake] Compiling OTClient Redemption Sources
              • [Windows][VC2022][Solution] Compiling OTClient Redemption Sources
          • Web
            • [Web] OTClient Redemption
        • Tutorials
          • Basic
            • Client Updater
    • 🔗Downloads
      • 🎮Clients
        • Client 11
        • Client 14
          • Tutorials
            • Client with HexEditorXVI32
            • Client with Notepad++
            • Client with config.ini
            • [Windows] How to change client background
        • OTClientV8
          • About
          • Getting Started
            • Android
              • [Android] Compiling OTClientV8 Sources
            • Linux
              • [Linux] Compiling OTClientV8 Sources
            • Windows
              • WSL
                • [WSL] Compiling OTClientV8 Sources
              • Visual Studio
                • [Windows][VC2022][CMake] Compiling OTClientV8 Sources
                • [Windows][VC2022][Solution] Compiling OTClientV8 Sources
          • Features
            • Health and Mana bar backgrounds
            • HTTP support
            • OTML Improvement
            • Simple cam recorder and player
            • Updater, encryption and compression
            • WebSockets
        • Minimap
      • 📑Codes
        • C++
        • Events
        • Functions
        • Libs
        • Modules
        • Others
      • 🖼️Images
        • PSDs
        • Others
      • 🗺️Maps
        • Custom
        • Global
      • 📑Revscripts
        • Actions
        • CreatureEvents
        • GlobalEvents
        • MoveEvents
        • NPCs
        • Spells
        • Systems
        • TalkActions
      • ⚔️Sprites
      • ⚙️Tools
        • Editors
        • Launchers
          • Canary Launcher
            • About
            • Getting Started
              • Windows
                • [Windows][VC2022][Solution] Compiling Canary Launcher Sources
          • Slender Launcher
            • About
            • Getting Started
              • Windows
                • [Windows][Go] Compiling Slender Launcher Sources
        • Login Server
          • About
          • Getting Started
        • Map Generators
      • 🌐Web Packages
        • Linux
        • Windows
      • 🌐Website Applications
        • Websites
          • CanaryAAC
            • About
            • Informations
              • Features
              • Functions
              • API
              • Routes
              • Middleware
            • CanaryAAC Bot
          • Gesior2012
            • About
          • GesiorAAC Global
            • About
          • MyAAC
            • About
          • MyAAC Global
            • About
          • SlenderAAC
            • About
          • ZnoteAAC
            • About
        • Applications
        • Layouts
        • APIs and SDKs
Powered by GitBook
On this page
  • Tutorial to set up the initial character using GesiorAAC and MyAAC.
  • Canary:
  • OTServBR-Global:
  1. OpenTibiaBR
  2. Projects
  3. Canary
  4. Tutorials
  5. Websites

[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),
🖥️
🐦