• We are currently performing site maintenance, parts of civfanatics are currently offline, but will come back online in the coming days. For more updates please see here.

Warmonger penalty mod

historix69

Emperor
Joined
Sep 30, 2008
Messages
1,412
You can either play under the rules or you can change the rules (mod).

Warmonger Points per Era are defined in Eras.xml.

A 1-line-mod with a sql-statement like

Code:
update Eras set WarmongerPoints = 0;
or
Code:
update Eras set WarmongerPoints = WarmongerPoints/3;

should fix your Warmonger-Problem.

A lot of Warmonger details are defined in GlobalParameters.xml (search for "Warmonger".)

Code:
       <Row Name="DIPLOMACY_WAR_LAST_FOREVER" Value="false" />
       
       <Row Name="DIPLOMACY_WAR_MIN_TURNS" Value="10" />
       
       <Row Name="DIPLOMACY_WARMONGER_POINT_PERCENT_DECAY" Value="50" />

      ...

       <Row Name="WARMONGER_CITY_PERCENT_OF_DOW" Value="50" />
      
       <Row Name="WARMONGER_FINAL_MAJOR_CITY_MULTIPLIER" Value="200" />
      
       <Row Name="WARMONGER_FINAL_MINOR_CITY_MULTIPLIER" Value="100" />
      
       <Row Name="WARMONGER_LIBERATE_POINTS" Value="32" />
      
       <Row Name="WARMONGER_RAZE_PENALTY_PERCENT" Value="200" />
      
       <Row Name="WARMONGER_REDUCTION_IF_AT_WAR" Value="40" />
      
       <Row Name="WARMONGER_REDUCTION_IF_DENOUNCED" Value="20" />
      
       <Row Name="WARMONGER_STOP_OCCUPYING_REFUND_PERCENT" Value="-100" />
 
Last edited:
Back
Top Bottom