• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Setting starting town

Invisiblue3

New Member
Joined
Mar 18, 2016
Messages
2
Reaction score
0
I am using the newest tfs. How do I set up the starting town? For some reason the starting town id is 2.

Also I am using Znote AAC and when i create a new character his starting town name is 'Thyrfing' which is not the 2nd map on my server.

Edit: Tibia 10.77
 
Check this in config.php:

Code:
    // Town ids and names: (In RME map editor, open map, click CTRL + T to view towns, their names and their IDs.
    // townID => 'townName' etc: ['3'=>'Thais']
    $config['towns'] = array(
        1 => 'Nevia',
        3 => 'Town 6',
    );
Code:
    // Available towns (specify town ids, etc: (0, 1, 2); to display 3 town options (town id 0, 1 and 2).
    $config['available_towns'] = array(1);
Code:
    $config['nvForceTown'] = 1; // Force a town to no vocation even though he selected something else? 0 = no, 1 = yes.
    $config['nvTown'] = 1; // Town id to force no vocations to get to, if nvForceTown is 1.

Check if everything is right.
 
Back
Top