[BNW] Finding/Requesting a Mod

ldvhl

ніщо
Joined
May 15, 2013
Messages
2,218
Hi all! I'm having trouble tracking down a mod which may only exist in my head. I'm looking for a mod that removes (or heavily reduces) the diplomatic penalty "they believe you're building cities too aggressively". Ideally the mod shouldn't do much else?

Any recommendations are appreciated!
 
If you're still looking, the Vox Populi mod has a LandDisputePercent tag under the HandicapInfos table.

Should be able to write a simple update mod to edit the percentage there.

Like so:

Code:
<GameData>

<HandicapInfos>

        <Update>

        <Where Type="HANDICAP_DIFFICULTY_LEVEL_HERE" />

        <Set>

            <LandDisputePercent>YOUR_VALUE_HERE</LandDisputePercent>

        </Set>

        </Update>

</HandicapInfos>

</GameData>
 
If you're still looking, the Vox Populi mod has a LandDisputePercent tag under the HandicapInfos table.

Should be able to write a simple update mod to edit the percentage there.

Like so:

Code:
<GameData>

<HandicapInfos>

        <Update>

        <Where Type="HANDICAP_DIFFICULTY_LEVEL_HERE" />

        <Set>

            <LandDisputePercent>YOUR_VALUE_HERE</LandDisputePercent>

        </Set>

        </Update>

</HandicapInfos>

</GameData>
Perfect, thank you!
 
Back
Top Bottom