Disable Weather?

GlasgowGeek

Chieftain
Joined
Oct 4, 2015
Messages
13
Hi,

Can anyone tell me what to edit to disable the weather system completely, for bug diagnosis?

Is there any info on how to enable/disable other features in the mod?

Thanks!
 
In ...\Mods\WeThePeople\Assets\XML\Terrain\CIV4FeatureInfos.xml you can change the iAppearance tag to the likelihood of different weather or terrain features showing up. If you set the number to zero the feature should not appear in the game.

Example:

Code:
       <FeatureInfo>
            <Type>FEATURE_FOG</Type>
            <Description>TXT_KEY_FEATURE_FOG</Description>
            <Civilopedia>TXT_KEY_FEATURE_FOG_PEDIA</Civilopedia>
            <ArtDefineTag>ART_DEF_FEATURE_FOG</ArtDefineTag>
            <YieldChanges/>
            <RiverYieldIncreases/>
            <iMovement>3</iMovement>
            <iSeeThrough>1</iSeeThrough>
            <iDefense>15</iDefense>
            <iAppearance>0</iAppearance> 
            ...
 
In ...\Mods\WeThePeople\Assets\XML\Terrain\CIV4FeatureInfos.xml you can change the iAppearance tag to the likelihood of different weather or terrain features showing up. If you set the number to zero the feature should not appear in the game.

Awesome, many thanks! :)
 
Top Bottom