Hi all,
I have been looking into how to alter the "year" readout in Civ V. I need this for a scenario that will start in the 1500's, and then advance by weeks or months.
Does anyone know if I simply use the CIV5GameSpeeds text and/or the CIV5Calendars text?
From the GameSpeeds file:
<GameSpeed_Turns>
<Row>
<GameSpeedType>GAMESPEED_MARATHON</GameSpeedType>
<MonthIncrement>180</MonthIncrement>
<TurnsPerIncrement>100</TurnsPerIncrement>
</Row>
etc...
I could change it to...
<GameSpeed_Turns>
<Row>
<GameSpeedType>GAMESPEED_MARATHON</GameSpeedType>
<WeekIncrement>180</WeekIncrement>
<TurnsPerIncrement>100</TurnsPerIncrement>
</Row>
etc...
OR, I could change:
<GameSpeeds>
<Row>
<ID>0</ID>
<Type>GAMESPEED_MARATHON</Type>
<Description>TXT_KEY_GAMESPEED_MARATHON</Description>
<Help>TXT_KEY_GAMESPEED_MARATHON_HELP</Help>
etc...
to the following if that "ID=0" indicates which calendar is being used...
<GameSpeeds>
<Row>
<ID>6</ID>
<Type>GAMESPEED_MARATHON</Type>
<Description>TXT_KEY_GAMESPEED_MARATHON</Description>
<Help>TXT_KEY_GAMESPEED_MARATHON_HELP</Help>
The "6" comes from the Calendars text file:
<Row>
<ID>6</ID>
<Type>CALENDAR_WEEKS</Type>
<Description>TXT_KEY_CALENDAR_WEEKS</Description>
</Row>
Anyone have some knowledge on this issue?
thanks,
I have been looking into how to alter the "year" readout in Civ V. I need this for a scenario that will start in the 1500's, and then advance by weeks or months.
Does anyone know if I simply use the CIV5GameSpeeds text and/or the CIV5Calendars text?
From the GameSpeeds file:
<GameSpeed_Turns>
<Row>
<GameSpeedType>GAMESPEED_MARATHON</GameSpeedType>
<MonthIncrement>180</MonthIncrement>
<TurnsPerIncrement>100</TurnsPerIncrement>
</Row>
etc...
I could change it to...
<GameSpeed_Turns>
<Row>
<GameSpeedType>GAMESPEED_MARATHON</GameSpeedType>
<WeekIncrement>180</WeekIncrement>
<TurnsPerIncrement>100</TurnsPerIncrement>
</Row>
etc...
OR, I could change:
<GameSpeeds>
<Row>
<ID>0</ID>
<Type>GAMESPEED_MARATHON</Type>
<Description>TXT_KEY_GAMESPEED_MARATHON</Description>
<Help>TXT_KEY_GAMESPEED_MARATHON_HELP</Help>
etc...
to the following if that "ID=0" indicates which calendar is being used...
<GameSpeeds>
<Row>
<ID>6</ID>
<Type>GAMESPEED_MARATHON</Type>
<Description>TXT_KEY_GAMESPEED_MARATHON</Description>
<Help>TXT_KEY_GAMESPEED_MARATHON_HELP</Help>
The "6" comes from the Calendars text file:
<Row>
<ID>6</ID>
<Type>CALENDAR_WEEKS</Type>
<Description>TXT_KEY_CALENDAR_WEEKS</Description>
</Row>
Anyone have some knowledge on this issue?
thanks,