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

How to make character start in Rookgaard? (Gesiors AAC)

Status
Not open for further replies.

Siramix

CEO
Senator
Premium User
Joined
Jan 6, 2010
Messages
3,554
Reaction score
263
Location
Sweden, Europe
Hello, Open-Tibia Community!

How do I make a character start in Rookgaard by using Gesiors AAC?

There's some lines that I think I have to change, but I have no clue if I'm right.
May you correct me please?

Code:
// CHARACTER config, format: ID_of_vocation => 'Name of Character to copy', load vocation name from $vocation_name[0] (below)
$config['site']['newchar_vocations'][1] = array(0 => 'Rook Sample');       
$config['site']['newchar_towns'] = array(15);

What is wrong there?
Or where shall I change the start position of new created characters?

Your sincerely,
Siramix from SwanaMix Productions!
 
$config['site']['newchar_towns'] = array(15);

there you change the select-able towns where the new chars may start

the number is the id of the town(same as ur map)
 
PHP:
// 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(0 => 'Rook Sample');
$config['site']['newchar_towns'][0] = array(15);

This works for me :)
 
Status
Not open for further replies.
Back
Top