ArcticOcean
Chieftain
The MapUnsupportedValues feature can not be used in mods.
"..Assets\Configuration\Data\SetupParameters.xml" is probably faulty set to a ruleset (at Row 184) while the sql queries reference to a map key/script.
current code (182-185):
this seems to fix it:
"..Assets\Configuration\Data\SetupParameters.xml" is probably faulty set to a ruleset (at Row 184) while the sql queries reference to a map key/script.
current code (182-185):
Code:
<Row QueryId="MapSupportedValues" Index="1" ConfigurationGroup="Map" ConfigurationId="MAP_SCRIPT"/>
<Row QueryId="MapSupportedValues" Index="2" ConfigurationGroup="Player" ConfigurationId="PLAYER_ID"/>
<Row QueryId="MapUnSupportedValues" Index="1" ConfigurationGroup="Game" ConfigurationId="RULESET"/>
<Row QueryId="MapUnSupportedValues" Index="2" ConfigurationGroup="Player" ConfigurationId="PLAYER_ID"/>
this seems to fix it:
Code:
<Row QueryId="MapSupportedValues" Index="1" ConfigurationGroup="Map" ConfigurationId="MAP_SCRIPT"/>
<Row QueryId="MapSupportedValues" Index="2" ConfigurationGroup="Player" ConfigurationId="PLAYER_ID"/>
<Row QueryId="MapUnSupportedValues" Index="1" ConfigurationGroup="Map" ConfigurationId="MAP_SCRIPT"/>
<Row QueryId="MapUnSupportedValues" Index="2" ConfigurationGroup="Player" ConfigurationId="PLAYER_ID"/>