Help with City Names

Gooblah

Heh...
Joined
Jun 5, 2007
Messages
4,282
The problem is that I went to /Assets/XML/CivInfo(or whatever) and changed city name. Now they show up as TXT_KEY_CITYNAME_(whatever name)_EXE
or something. How do i correct it to show normal names (i.e. I changed Bombay to Mumbai, and now its screwed up. How do i get it to say "mumbai" not code?)
 
edit one of the files in /assets/xml/text/ to include

Code:
<TEXT>
                <Tag>TXT_KEY_CITY_MUMBAI</Tag>
                <English>Mumbai</English>
                <French></French>
                <German></German>
                <Italian></Italian>
                <Spanish></Spanish>
        </TEXT>

TXT_KEY_ are pointers to the /text files....this structure is what allows multilingual names.

ps:i hope you are doing this in a mod and not the root assets folder.
 
Top Bottom