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

Solved HELP with Gesior AAC ~ Setting Up Starting Cities

Vikarious

New Member
Joined
Dec 16, 2008
Messages
93
Reaction score
2
Hello everybody, I'm needing help to setup Gesior AAC, al players start in town with town id 1, I cannot choose what city I wish to born...

I'm using gesior0.3.5fixv6

What I must to do, to be able to select cities where I wish to born?

Be sure I'll be rep++!!


Thanks a lot =)
 
Last edited:
it is already set to 1, i think that i must config osmething into config.php, but i just dont know what, i think around here:

$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);

and here:

// list of towns on ots
$towns_list[0] = array(1 => 'Ania', 2 => 'Frost City', 3 => 'Laguna Beach', 4 => 'Alam Al-Mythal');

// list of towns, id => 'name', $towns_list[0] - for world id 0
$towns_list[1] = array(1 => 'Ania', 2 => 'Frost City', 3 => 'Laguna Beach', 4 => 'Alam Al-Mythal'); // list of towns, id => 'name', $towns_list[0] - for world id 1

I hope somebody be bale to help me,

Thanks =)
 
change
PHP:
$config['site']['newchar_towns'][0] = array(1);
to
PHP:
$config['site']['newchar_towns'][0] = array(1,2,3,4);
So ppl can choose cities they want to : 1 Ania, 2 Frost City, 3 Laguna Beach, 4 Alam Al-Mythnan
If you dont want them to choose for exemple frost city just delete 2 in script.
 
Back
Top