Hey guys,
is there a possibility or a mod to play longer than the year 2050 (if possible till someone has won even if its 4534 or something like that)?
greetz,
thes
Hey guys,
is there a possibility or a mod to play longer than the year 2050 (if possible till someone has won even if its 4534 or something like that)?
greetz,
thes
Couldn't you just turn off the Time victory?
xD........
Weird that the one more turn option was greyed out...
This is the only section I can find that references the time victory, and it doesn't specify any numbers. However, 1 line might do the trick:
C:\Program Files (x86)\Steam\steamapps\common\sid meier's civilization v\Assets\Gameplay\XML\GameInfo\CIV5Victories.xml
<Type>VICTORY_TIME</Type>
<Description>TXT_KEY_VICTORY_TIME</Description>
<VictoryStatement>TXT_KEY_VICTORY_TIME_BANG</VictoryStatement>
<VictoryBackground>Victory_Score.dds</VictoryBackground>
<Civilopedia>TXT_KEY_VICTORY_TIME_PEDIA</Civilopedia>
<EndScore>true</EndScore>
<Permanent>true</Permanent> (Maybe make this false?)
<WinsGame>true</WinsGame>
<Audio>AS2D_VICTORY_SPEECH_ALTERNATE_CONQUEST_VICT ORY</Audio>
Another way to mod this is to change the turn speed. The default for standard is something like 300-400 turns between 4000bc and 2050AD. You can mod it so that there are instead 500 turns, 1000 turns, or more..
Basically each of the following represents an gamespeed ra. The first number is the number of months per turn, and the second number is the number of turns until the next gamespeed era.
None of this has any effect on the actual game other than the Year clock and of course the time/turns needed to reach 2050.
C:\Program Files (x86)\Steam\steamapps\common\sid meier's civilization v\Assets\Gameplay\XML\GameInfo\CIV5GameSpeeds.xml
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>480</MonthIncrement>
<TurnsPerIncrement>75</TurnsPerIncrement>
</Row>
<Row>
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>300</MonthIncrement>
<TurnsPerIncrement>60</TurnsPerIncrement>
</Row>
<Row>
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>240</MonthIncrement>
<TurnsPerIncrement>25</TurnsPerIncrement>
</Row>
<Row>
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>120</MonthIncrement>
<TurnsPerIncrement>50</TurnsPerIncrement>
</Row>
<Row>
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>60</MonthIncrement>
<TurnsPerIncrement>60</TurnsPerIncrement>
</Row>
<Row>
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>24</MonthIncrement>
<TurnsPerIncrement>50</TurnsPerIncrement>
</Row>
<Row>
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>12</MonthIncrement>
<TurnsPerIncrement>120</TurnsPerIncrement>
</Row>
<Row>
<GameSpeedType>GAMESPEED_STANDARD</GameSpeedType>
<MonthIncrement>6</MonthIncrement>
<TurnsPerIncrement>60</TurnsPerIncrement>
</Row>
Last edited by Procylon; 09-27-2010 at 06:32 AM.