Year start problem: Change to 5000 BC does not work

CIV was only invented at 4000BC, so if you start at 5000BC, then you invented a new game.

And 2K wouldn't allow that.
 
What's wrong?

If you want help with a mod you've made, you need to give us a lot more information. Attach your mod to the post, or at the very least copy and paste the relevant XML here.

From the sound of it, your mod (or at least the XML file containing that change) isn't being loaded. So either you have some other error in the file, or you didn't set up the OnModActivated command correctly.
 
have you got it to change the global defines?

The original entry is located in GlobalDefines.xml (look in the root of the XML directory to find it), and contains

Code:
<GameData>...

       ...<Defines>...

                 ...<Row Name="START_YEAR"> 
                              <Value>-4000</Value> 
                    </Row>...

       ...</Defines>

</Gamedata>

Dont know what code you have to list 5,000 B.C. as a start year within the Advanced setup menu, but it needs to call this bit of code...

Code:
<GameData>
          <Defines>
                    <Update>
                              <Where Name="START_YEAR"/> 
                              <Set Value="-5000"/>
                    </Update>
          </Defines>
</GameData>
if you're going to have any chance of setting the start year correctly.
 
Back
Top Bottom