Civ4TurnTimerInfo
The Civ4TurnTimerInfo file defines the turn timers that can be used in multiplayer.
All tags must be opened and closed; the first is the "open", the second the "close" tag. If nothing goes inside a "list tag", then it should just be the opening tag with a "/" before the closing bracket. The following tables contain all available tags, as well as their purpose and accepted values.
This page is missing information. Do not remove this notice until it is complete.
Tags
Headers
These tags typically bracket other tags, sometimes the entire file, and are generally used to specify more than one piece of data.
Tag Name | Description |
---|---|
TurnTimerInfo | Main bracket for each entry |
Type | Name used in other files |
Text
Tag Name | Description |
---|---|
Description | Text displayed in game |
Integers
All of these tags have a numerical value. Though it sometimes can be negative, it usually is not.
Tag Name | Description |
---|---|
iBaseTime | Base length of the turn in seconds |
iCityBonus | Unknown |
iUnitbonus | Unknown |
iFirstTurnMultiplier | Unknown |
Example
In the following example of code, please note that there is a specific order of all of the tags. You must list the tags in this order for the game to properly interpret your file.
<TurnTimerInfo> <Type>TURNTIMER_STATIC</Type> <Description>TXT_KEY_TURNTIMER_STATIC</Description> <iBaseTime>240</iBaseTime> <iCityBonus>3</iCityBonus> <iUnitBonus>1</iUnitBonus> <iFirstTurnMultiplier>4</iFirstTurnMultiplier> </TurnTimerInfo>