• 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 [Znote AAC] Town name

eduardojuniosm

Full Stack Web Developer
Joined
Dec 16, 2013
Messages
99
Reaction score
35
Location
Brazil
How do I change the name of the city that appears in ZNote AAC? It shows only two cities: Thyrfing and Town 3. But the map has 4 different cities with others names. Thank you in advance!
 
in config.php

this is if you want to change the name on the banner.
Code:
    $config['site_title'] = 'Znote AAC';
    $config['site_title_context'] = 'Because open communities are good communities. :3';

and cities here.
Code:
    $config['towns'] = array(
        2 => 'Thyrfing',
        3 => 'Town 3',
    );
 
Back
Top