Questions about New Civilization City Names

CharZ

Chieftain
Joined
Mar 3, 2017
Messages
31
So with the mod I'm currently developing the second city I founded grabbed the name 'Mecca' instead of what I have told it are names for dutch cities. Thus my brain formulated a few questions:
  1. Is there a minimum amount of city names required?
  2. Is there a maximum?
  3. Can someone provide an example table?
Thanks in advance
- CharZ
 
Something like

Code:
<CityNames>
        <Row CivilizationType="CIVILIZATION_UK" CityName="London"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Manchester"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Birmingham"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="York"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Glasgow"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Liverpool"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Newcastle upon Tyne"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Nottingham"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Sheffield"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Bristol"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Belfast"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Leicester"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Edinburgh"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Brighton and Hove"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Bath"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Cardiff"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Coventry"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Peterborugh"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Hereford"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Preston"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Swansea"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Winchester"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Derby"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Canterbury"/>
        <Row CivilizationType="CIVILIZATION_UK" CityName="Bradford"/>
    </CityNames>

As far as I know there isn't a minimum or maximum. If your second city isn't reading the name from your CityNames element then your XML is probably malformed somewhere in your MOD. If that happens the MOD stops loading at that point. The thing to look at is the Database.log file in your Documents\My Games\Sid Meier's Civilization VI\Logs directory to see if there are any errors.
 
Back
Top Bottom