How do you change Civ names?

malcolm01234

Just A Grain Of Sand
Joined
Apr 18, 2009
Messages
157
Location
My Own Mental Prison
How do you change a civilization's name, adjective, leader name, and city list?

BTW I'm fairly familiar with XML ;)


Moderator Action: Moved ot the main forum.
Because the tutorials subforum is only for tutorials ;).
 
OK I found the files but I have a different idea, can I just change the words the tags give?

(i.e. I wanted to change the Turks to the Uyghur Khaganate so I could find the words that link to TXT_KEY_CIV_OTTOMAN_DESC and change it to 'Uyghur Khaganate' ? etc.)

If I can I need to know where said files are...
 
Ok I figured out how to do it so I went into Mod Buddy and was going to change Polynesia to Indonesia... Finally when I finished it and saved it I realized I was editing the original files...

Is this going to cause a problem and if it is can I fix it?

Also how are you PROPERLY supposed to make a mod when only editing XML
 
OK well I just checked and it did cause a problem... every city made in world builder now has TXT_KEY ... :( I haven't tried it in-game but I am about to.

Is there any way to undo everything I did and make a actual Mod in Mod Buddy?
 
To simply change a name, it is extremely simple to do.

Code:
<Language_en_US>
  <Update>
     <Where Tag="TXT_KEY_CIV_AMERICA_DESC"/>
     <Set>
        <Text>Hello Kitty Island Adventure</Text>
     </Set>
  </Update>
  <Update>
     <Where Tag="TXT_KEY_LEADER_WASHINGTON"/>
     <Set>
        <Text>Mr. Biggles</Text>
     </Set>
  </Update>
</Language_en_US>

Code:
  <Civilization_CityNames>
     <Delete CivilizationType="CIVILIZATION_AMERICA"/>
     <Row>
        <CivilizationType>CIVILIZATION_AMERICA</CivilizationType>
        <CityName>TXT_KEY_CITY_NAME_HELLO_KITTY_CAPITAL</CityName>
     </Row>
     <Row>
        <CivilizationType>CIVILIZATION_AMERICA</CivilizationType>
        <CityName>TXT_KEY_CITY_NAME_LOLLIPOLIS</CityName>
     </Row>
     ....
  </Civilization_CityNames>

Corresponding text file:
Code:
<Language_en_US>
     <Row Tag="TXT_KEY_CITY_NAME_HELLO_KITTY_CAPITAL">
       <Text>Hello Kitty Capital</Text>
     </Row>
     <Row Tag="TXT_KEY_CITY_NAME_LOLLIPOLIS">
       <Text>Lollipolis</Text>
     </Row>
</Language_en_US>
 
Back
Top Bottom