Calander

If all you want to do is change the abbreviations then change the entries for TXT_KEY_TIME_BC_SAVE, TXT_KEY_TIME_BC, TXT_KEY_TIME_AD_SAVE, and TXT_KEY_TIME_AD in XML/Text/CIV4GameTextInfos.xml
 
Thanks, that is what I wanted to do but how do I change it so it starts in a different year in a basic game?

There are several ways to change the start year.
1. If you are starting your mod from a WBSave file, you can edit the following line to change the start year. StartYear=-4000

2. There is an entry in GlobalDefines.xml called START_YEAR. Just copy that file to your mod and change this value.

3. If you are using Python, you can add the following line to your code to change the start year. gc.getGame().setStartYear(-4000)
 
Back
Top Bottom