• 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 Your City Problem

adorabelle

New Member
Joined
Feb 22, 2012
Messages
3
Reaction score
1
I am using gesior 0.3.6, and I am having a problem with my character Creation.
When going from My Account > Create a Character , there is no area to the right of pick your vocation for select your city. I have searched the forums and found a few suggestions and I have tried them all. I was wondering if anyone else had this problem or if someone would mind helping me fix this?

I changed my config.php to

PHP:
$config['site']['newchar_towns'][0] = array(1,2,4,11,13);
$config['site']['newchar_towns'][1] = array(1,2,4,11,13);
// sample, if all players should spawn in one city (city with ID 4):          
$config['site']['newchar_towns'] = array(1,2,4,11,13);

// list of towns on ots
$towns_list[0] = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 11 => 'Edron', 13 => 'Yalahar', 15 => 'Pandora'); // list of towns, id => 'name', $towns_list[0] - for world id 0
$towns_list[1] = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 11 => 'Edron', 13 => 'Yalahar', 15=> 'Pandora'); // list of towns, id => 'name', $towns_list[0] - for world id 1


And here is a copy of my accountmanagement.php in the attachment below.

Any help with this would be deeply appreciated.
 

Attachments

  • accountmanagement.rar
    11.1 KB · Views: 21 · VirusTotal
Last edited:
Use this one.
PHP:
$config['site']['newchar_towns'][0] = array(1,2,4,11,13);
$config['site']['newchar_towns'][1] = array(1,2,4,11,13);
// sample, if all players should spawn in one city (city with ID 4):          
$config['site']['newchar_towns'] = array(2);

// list of towns on ots
$towns_list[0] = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 11 => 'Edron', 13 => 'Yalahar', 15 => 'Pandora'); // list of towns, id => 'name', $towns_list[0] - for world id 0
$towns_list[1] = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 11 => 'Edron', 13 => 'Yalahar', 15=> 'Pandora'); // list of towns, id => 'name', $towns_list[0] - for world id 1

btw:
$config['site']['newchar_towns'] = array(2); --- The town id
 
Back
Top