Is a Global Resolutions mod possible?

jahsoldier

Warlord
Joined
Aug 11, 2008
Messages
203
A few people have asked similar questions but I haven't seen a definite reply yet - I know nothing about modding, but is a Global Resolutions system similar to that in Civ IV possible at the moment?

The system would come into play after the UN was founded, and would require Civs to vote every set number of turns (say 10) on a number of issues (nuclear non-proliferation, fair trade etc) that would become compulsory if they get a majority of votes.

At the moment the details of the resolutions themselves would have to be worked out, but I'm just interested if any experienced modders could tell me if it would actually be possible to make.
 
Hey,
There are already many of the common 'global resolutions' from civ4 in the C:\Program Files (x86)\Steam\steamapps\common\sid meier's civilization v\Assets\Gameplay\XML\GameInfo folder in the file CIV5Votes.xml, such as:

Code:
        <Column name="ID" type="integer" primarykey="true" autoincrement="true" />
        <Column name="Type" type="text" notnull="true" unique="true" />
        <Column name="Description" type="text" />
        <Column name="PopulationThreshold" type="integer" default="0" />
        <Column name="MinVoters" type="integer" default="0" />
        <Column name="CityVoting" type="boolean" default="false" />
        <Column name="CivVoting" type="boolean" default="false" />
        <Column name="SecretaryGeneral" type="boolean" default="false" />
        <Column name="Victory" type="boolean" default="false" />
        <Column name="FreeTrade" type="boolean" default="false" />
        <Column name="NoNukes" type="boolean" default="false" />
        <Column name="DefensivePact" type="boolean" default="false" />
        <Column name="OpenBorders" type="boolean" default="false" />
        <Column name="ForcePeace" type="boolean" default="false" />
        <Column name="ForceNoTrade" type="boolean" default="false" />
        <Column name="ForceWar" type="boolean" default="false" />
        <Column name="AssignCity" type="boolean" default="false" />

Perhaps try and enable these?

G
 
Back
Top Bottom