YnAMP - Yet (not) Another Maps Pack

YnAMP - Development thread Civ6

The version on CFC was packed with multiple mods, I've separated them from the base mod (you can't pack multiple mods on steam anyway)

You'll found the other components in the YnAMP collection on steam (and now in the separate pack on CFC)
 
Ged, on giant earth I'm not using real city names. Settled in Santo Domingo and got Loc_something. I've gone through the Russian list. It would be weird if this were happening to AI civs.
 
How are you guys dealing with having more civs than beliefs? I get a message every turn telling me China is following/founded 'the belief.'
I'd like a save that I could use for testing, that means a save without the Australian / Persian DLC

Ged, on giant earth I'm not using real city names. Settled in Santo Domingo and got Loc_something. I've gone through the Russian list. It would be weird if this were happening to AI civs.
what's the "something" exactly ?
 
I'd like a save that I could use for testing, that means a save without the Australian / Persian DLC


what's the "something" exactly ?

I use Persian. I believe its because I have more civs than beliefs.

Jeez. Loc_City_(name of city)? Began with a G ? Right where Santo Domingo wouldbe.

Also... finally found Yerevan. Suzerain is Poland. But city doesn't exist. But they gave me a quest. And a city I settled was named Yerevan.
 
Also do civ use the religions the actually use in history?

If not, is there a sub mod that do that?

Thanks! :)

Look up Tomakeh's Historical Religions mod.

I use Persian. I believe its because I have more civs than beliefs.

Jeez. Loc_City_(name of city)? Began with a G ? Right where Santo Domingo wouldbe.

Also... finally found Yerevan. Suzerain is Poland. But city doesn't exist. But they gave me a quest. And a city I settled was named Yerevan.

Are you sure it's not somewhere else? If the real-name cities option is active then if a city is settled elsewhere they will not use their default name (so you can have city states be called differently if they moved their settler to settle).
 
Look up Tomakeh's Historical Religions mod.



Are you sure it's not somewhere else? If the real-name cities option is active then if a city is settled elsewhere they will not use their default name (so you can have city states be called differently if they moved their settler to settle).

That option is not active. There is no reason I can see for the Yerevan settler to have moved. Alex' and Cyrus's starts do not impact Yerevan's. But Yerevan has stopped spawning where she normally does.

My guess is somehow Yerevan's starting position got moved.
 
That option is not active. There is no reason I can see for the Yerevan settler to have moved. Alex' and Cyrus's starts do not impact Yerevan's. But Yerevan has stopped spawning where she normally does.

My guess is somehow Yerevan's starting position got moved.

It hasn't since yerevan was in my game. So I'm not sure what's at play here.
 
Hello again, I am almost positive that this was asked early on on this discussion, or maybe another site of yours, but I can't find an explanation on how to add a city-state into the game. I modified whatever files I found that had city-states in them to add a city-state, and I would set up the game, start it, it gave me a mostly black loading screen, then it says "Play Game" as if I was using the method to get World Builder up, but if I clicked on it, nothing would happen, it would go to the main menu. Even if I didn't try to click on anything on the screen, it would still take me to the main menu.

I would appreciate some guidance, like a page in a discussion where successfully adding a city-state was explained.
 
Hello again, I am almost positive that this was asked early on on this discussion, or maybe another site of yours, but I can't find an explanation on how to add a city-state into the game. I modified whatever files I found that had city-states in them to add a city-state, and I would set up the game, start it, it gave me a mostly black loading screen, then it says "Play Game" as if I was using the method to get World Builder up, but if I clicked on it, nothing would happen, it would go to the main menu. Even if I didn't try to click on anything on the screen, it would still take me to the main menu.

I would appreciate some guidance, like a page in a discussion where successfully adding a city-state was explained.
See modding and database logs for the reason of the crash.

Hey, I wanted to ask if you think it'd be feasible to add mod support for custom Natural Wonders on the maps? It would be cool to have Fuji while playing as Japan :D
Yes, I'll redo the way NW are set on the map, for yours the extra placement table may already work, but I'm not sure.

I'll do something, because I really want compatibility here, like TSL for custom civs.
 
@sukritact try this:

In a sql file
Code:
CREATE TABLE IF NOT EXISTS ExtraPlacement
    (    MapName TEXT,
        X INT default 0,
        Y INT default 0,
        ConfigurationId TEXT,
        ConfigurationValue TEXT,
        TerrainType TEXT,
        FeatureType TEXT,
        ResourceType TEXT,
        Quantity INT default 0);

Then in a xml file loaded after the sql
Code:
<GameData>
    <ExtraPlacement>
        <Replace MapName="GiantEarth" X="50" Y="50" FeatureType="FEATURE_YOUR_NW" />
    </ExtraPlacement>
    
</GameData>
Replace the map name and values of x, y with the position of the NW on the map you want to use.

This should work for NW that doesn't require special placement rules, but I plan to add a complete new table and code to handle NW in all cases.
 
This is the text from "Database.log":

Code:
[1425970.906] [Localization] ERROR: UNIQUE constraint failed: LocalizedText.Language, LocalizedText.Tag
[1425970.906] [Localization]: While executing - 'insert into BaseGameText('Tag', 'Text') values (?, ?);'
[1425970.906] [Localization]: In XMLSerializer while inserting row into table insert into BaseGameText('Tag', 'Text') with  values (LOC_CITY_NAME_BLANK, City, ).
[1425970.906] [Localization]: In XMLSerializer while updating table BaseGameText from file CityNames_Text Kiev.xml.
[1425970.906] [Localization] ERROR: UNIQUE constraint failed: LocalizedText.Language, LocalizedText.Tag
[1425970.906] [Localization]: While executing - 'insert into BaseGameText('Tag', 'Text') values (?, ?);'
[1425970.906] [Localization]: In XMLSerializer while inserting row into table insert into BaseGameText('Tag', 'Text') with  values (LOC_CITY_NAME_BLANK, City, ).
[1425970.906] [Localization]: In XMLSerializer while updating table BaseGameText from file CityNames_Text.xml.
[1425970.906] [Localization] ERROR: UNIQUE constraint failed: LocalizedText.Language, LocalizedText.Tag
[1425970.906] [Localization]: While executing - 'insert into BaseGameText('Tag', 'Text') values (?, ?);'
[1425970.906] [Localization]: In XMLSerializer while inserting row into table insert into BaseGameText('Tag', 'Text') with  values (LOC_CIVILIZATION_AMERICA_DESCRIPTION, American Empire, ).
[1425970.906] [Localization]: In XMLSerializer while updating table BaseGameText from file Civilizations_Text Kiev.xml.
[1425970.907] [Localization] ERROR: UNIQUE constraint failed: LocalizedText.Language, LocalizedText.Tag
[1425970.907] [Localization]: While executing - 'insert into BaseGameText('Tag', 'Text') values (?, ?);'
[1425970.907] [Localization]: In XMLSerializer while inserting row into table insert into BaseGameText('Tag', 'Text') with  values (LOC_CIVILIZATION_AMERICA_DESCRIPTION, American Empire, ).
[1425970.907] [Localization]: In XMLSerializer while updating table BaseGameText from file Civilizations_Text.xml.
[1426004.367] [Localization]: Validating Foreign Key Constraints...
[1426004.367] [Localization]: Passed Validation.
[1426004.681] [Configuration]: Validating Foreign Key Constraints...
[1426004.681] [Configuration]: Passed Validation.
[1426019.303] [FullTextSearch]: Initializing FullTextSearch
[1426022.367] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1426022.367] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1426022.367] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1426022.367] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations (2).xml.
[1426022.367] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1426022.367] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1426022.367] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1426022.367] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations.xml.
[1426022.944] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1426022.944] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1426023.754] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1426023.754] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1426023.754] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1426023.754] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations (2).xml.
[1426023.755] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1426023.755] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1426023.755] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1426023.755] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations.xml.
[1426024.152] [Gameplay]: Validating Foreign Key Constraints...
[1426024.157] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_KIEV" does not exist in Leaders
[1426024.176] [Gameplay]: Failed Validation.
[1426027.488] [Configuration]: Validating Foreign Key Constraints...
[1426027.488] [Configuration]: Passed Validation.
[1432105.269] [FullTextSearch]: FTS - Creating Context
[1432226.578] [Configuration]: Validating Foreign Key Constraints...
[1432226.578] [Configuration]: Passed Validation.
[1432229.747] [Gameplay] ERROR: table Colors has 6 columns but 5 values were supplied
[1432229.747] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1432229.747] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1432229.747] [Gameplay]: Validating Foreign Key Constraints...
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_AKSUM" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_CAPE_TOWN" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_CUZCO" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_DAKAR" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_DUBLIN" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_GARAMANTES" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_HARAPPA" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_IFE" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_KIEV" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_LAKOTA" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_MOGADISHU" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_RABAT" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_REYKJAVIK" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_SAMARKAND" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_SUTAIO" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_SYDNEY" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_TIKAL" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_ULUNDI" does not exist in Leaders
[1432229.754] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_VANCOUVER" does not exist in Leaders
[1432229.775] [Gameplay]: Failed Validation.
[1432229.848] [Gameplay]: Validating Foreign Key Constraints...
[1432229.853] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_KIEV" does not exist in Leaders
[1432229.872] [Gameplay]: Failed Validation.
[1432234.439] [FullTextSearch]: FTS - Creating Context
[1432234.623] [Configuration]: Validating Foreign Key Constraints...
[1432234.624] [Configuration]: Passed Validation.
[1432239.669] [FullTextSearch]: FTS - Creating Context
[1432249.289] [Configuration]: Validating Foreign Key Constraints...
[1432249.289] [Configuration]: Passed Validation.
[1432269.705] [Configuration]: Validating Foreign Key Constraints...
[1432269.705] [Configuration]: Passed Validation.
[1432337.375] [Configuration]: Validating Foreign Key Constraints...
[1432337.375] [Configuration]: Passed Validation.
[1432339.523] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1432339.524] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1432339.524] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1432339.524] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations (2).xml.
[1432339.524] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1432339.524] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1432339.524] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1432339.524] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations.xml.
[1432339.829] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1432339.829] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1432340.593] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1432340.593] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1432340.593] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1432340.593] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations (2).xml.
[1432340.594] [Gameplay] ERROR: UNIQUE constraint failed: Kinds.Kind
[1432340.594] [Gameplay]: While executing - 'insert into Kinds('Kind') values (?);'
[1432340.594] [Gameplay]: In XMLSerializer while inserting row into table insert into Kinds('Kind') with  values (KIND_CIVILIZATION, ).
[1432340.594] [Gameplay]: In XMLSerializer while updating table Kinds from file Civilizations.xml.
[1432341.384] [Gameplay] ERROR: table Colors has 6 columns but 5 values were supplied
[1432341.384] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1432341.384] [Gameplay] ERROR: FOREIGN KEY constraint failed
[1432341.384] [Gameplay]: Validating Foreign Key Constraints...
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_AKSUM" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_CAPE_TOWN" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_CUZCO" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_DAKAR" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_DUBLIN" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_GARAMANTES" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_HARAPPA" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_IFE" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_KIEV" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_LAKOTA" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_MOGADISHU" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_RABAT" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_REYKJAVIK" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_SAMARKAND" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_SUTAIO" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_SYDNEY" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_TIKAL" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_ULUNDI" does not exist in Leaders
[1432341.390] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_VANCOUVER" does not exist in Leaders
[1432341.409] [Gameplay]: Failed Validation.
[1432341.467] [Gameplay]: Validating Foreign Key Constraints...
[1432341.472] [Gameplay] ERROR: Invalid Reference on CivilizationLeaders.LeaderType - "LEADER_MINOR_CIV_KIEV" does not exist in Leaders
[1432341.490] [Gameplay]: Failed Validation.
[1432345.202] [FullTextSearch]: FTS - Creating Context
[1432345.385] [Configuration]: Validating Foreign Key Constraints...
[1432345.386] [Configuration]: Passed Validation.
[1432697.266] [FullTextSearch]: FullTextSearch - Shutting down

I will say that I only attempted to add Kiev, but all of these other issues came as a surprise to me.
 
Last edited by a moderator:
These next two are from "Modding.log":
Code:
[1426019.368] Status: Initializing Modding Framework.
[1426019.369] Status: C:/Users/Peter/Documents/My Games/Sid Meier's Civilization VI/Mods.sqlite
[1426019.379] Status: Connected to modding database!
[1426019.379] Status: Ensuring Foreign Key support is enabled and set to initially deferred.
[1426019.379] Status: Checking database version...
[1426019.380] Status: Modding database is up-to-date!
[1426019.380] Status: Loading Stored Procedures...
[1426019.540] Status: Checking required procedures exist...
[1426019.540] Status: Initializing Services...
[1426019.540] Status: Component Discovery Service initialized.
[1426019.540] Status: File Service initialized.
[1426019.540] Status: Localization Service initialized.
[1426019.540] Status: Mod Association Service initialized
[1426019.540] Status: Mod Discovery Service initialized.
[1426019.541] Status: Mod Loader Service initialized.
[1426019.541] Status: Mod Selection Service missing. Skipping.
[1426019.541] Status: Ownership Service initialized.
[1426019.541] Status: Properties Service initialized.
[1426019.541] Status: Subscription Service - Detected 0 subscriptions
[1426019.541] Status: Subscription Service initialized.
[1426019.541] Status: User Data Service missing. Skipping.
[1426019.541] Status: Services initialized!
[1426019.541] Status: Modding Framework is initialized.
[1426019.541] Status: Initializing Modding Framework took - 173ms.
[1426019.553] Status: Verifying enabled mods can coexist.
[1426019.555] Status: Discovering new mods...
[1426020.988] Status: Finished Discovery.
[1426020.988] Status: Discovery Summary:
[1426020.988] Status: Deleted 0 mods.
[1426020.988] Status: Discovered 0 mods.
[1426020.988] Status: Discovering Mods took - 1433ms.
[1426021.000] Status: Bootstrapping game content
[1426021.001] Status: Loading Vanilla DLL.
[1426021.016] Status: Building gameplay database.
[1426024.176] ERROR: Gameplay database failed validation!  See Database.log for additional details.
[1426024.176] Status: Initializing Vanilla DLL.
[1426024.327] Status: Instantiate GameCore UI Manager.
[1426024.327] Status: Saving a debug version of the gameplay database.
[1426025.902] Status: Successfully bootstrapped game content.
[1426025.942] Status: Mods - Loading AncientRivalsScenario_Config.xml
[1426025.942] Status: Mods - Loading AncientRivalsScenario_Victories.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_Config.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_Eras.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_Features.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_GlobalParameters.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_Policies.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_Projects.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_Resources.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_StartScript.lua
[1426025.943] Status: Mods - Loading ColdWarScenario_Units.xml
[1426025.943] Status: Mods - Loading ColdWarScenario_Victories.xml
[1426025.944] Status: Mods - Loading ColdWarScenario_WMDs.xml
[1426025.944] Status: Mods - Loading NapoleonScenario_Config.xml
[1426025.944] Status: Mods - Loading NapoleonScenario_Eras.xml
[1426025.944] Status: Mods - Loading NapoleonScenario_StartScript.lua
[1426025.944] Status: Mods - Loading NapoleonScenario_Units.xml
[1426025.944] Status: Mods - Loading NapoleonScenario_Victories.xml
[1426025.944] Status: Mods - Loading ReligiousCombatScenario_Civilizations.xml
[1426025.944] Status: Mods - Loading ReligiousCombatScenario_Config.xml
[1426025.944] Status: Mods - Loading ReligiousCombatScenario_Eras.xml
[1426025.944] Status: Mods - Loading ReligiousCombatScenario_Maps.xml
[1426025.945] Status: Mods - Loading ReligiousCombatScenario_Victories.xml
[1426025.945] Status: Mods - Loading DLC3.dep
[1426025.945] Status: Mods - Loading Data/ARX/Civ_LEADER_JOHN_CURTIN.png
[1426025.945] Status: Mods - Loading Data/Australia_Civilizations.xml
[1426025.945] Status: Mods - Loading Data/Australia_Config.xml
[1426025.945] Status: Mods - Loading Data/Australia_Features.xml
[1426025.945] Status: Mods - Loading Data/Australia_Icons_Civilizations.xml
[1426025.945] Status: Mods - Loading Data/Australia_Icons_Features.xml
[1426025.945] Status: Mods - Loading Data/Australia_Icons_Leaders.xml
[1426025.946] Status: Mods - Loading Data/Australia_Icons_UnitActions.xml
[1426025.946] Status: Mods - Loading Data/Australia_Icons_UnitPortraits.xml
[1426025.946] Status: Mods - Loading Data/Australia_Icons_Units.xml
[1426025.946] Status: Mods - Loading Data/Australia_Improvements.xml
[1426025.946] Status: Mods - Loading Data/Australia_Leaders.xml
[1426025.946] Status: Mods - Loading Data/Australia_Units.xml
[1426025.946] Status: Mods - Loading Platforms/Windows/Audio/DLC03Banks.ini
[1426025.946] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Leader_SFX.bnk
[1426025.946] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Leader_SFX.txt
[1426025.946] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Leader_SFX.xml
[1426025.946] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Music_Bank.bnk
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Music_Bank.txt
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Music_Bank.xml
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Speech.bnk
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Speech.txt
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Speech.xml
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Unit_Bank_2D.bnk
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Unit_Bank_2D.txt
[1426025.947] Status: Mods - Loading Platforms/Windows/Audio/DLC03_Unit_Bank_2D.xml
[1426025.947] Status: Mods - Loading Text/Australia_Translations_ConfigText.xml
[1426025.947] Status: Mods - Loading Text/Australia_Translations_Text.xml
[1426025.947] Status: Mods - Loading Text/en_US/Australia_CivilopediaText.xml
[1426025.947] Status: Mods - Loading Text/en_US/Australia_ConfigText.xml
[1426025.947] Status: Mods - Loading Text/en_US/Australia_Text.xml
[1426025.948] Status: Mods - Loading Data/Aztec_Montezuma_ConfigData.xml
[1426025.948] Status: Mods - Loading Data/Aztec_Montezuma_GameplayData.xml
[1426025.948] Status: Mods - Loading Data/Building_Huey_Teocalli.xml
[1426025.948] Status: Mods - Loading DLC2.dep
[1426025.948] Status: Mods - Loading Data/ARX/Civ_LEADER_JADWIGA.png
[1426025.948] Status: Mods - Loading Data/Poland_Jadwiga_ConfigData.xml
[1426025.948] Status: Mods - Loading Data/Poland_Jadwiga_GameplayData.xml
[1426025.948] Status: Mods - Loading Data/Poland_Jadwiga_Icons_Buildings.xml
[1426025.948] Status: Mods - Loading Data/Poland_Jadwiga_Icons_Civilizations.xml
[1426025.948] Status: Mods - Loading Data/Poland_Jadwiga_Icons_Leaders.xml
[1426025.948] Status: Mods - Loading Data/Poland_Jadwiga_Icons_UnitPortraits.xml
[1426025.949] Status: Mods - Loading Data/Poland_Jadwiga_Icons_Units.xml
[1426025.949] Status: Mods - Loading Platforms/Windows/Audio/DLC02Banks.ini
[1426025.949] Status: Mods - Loading Platforms/Windows/Audio/DLC02_Leader_SFX.bnk
[1426025.949] Status: Mods - Loading Platforms/Windows/Audio/DLC02_Leader_SFX.txt
[1426025.949] Status: Mods - Loading Platforms/Windows/Audio/DLC02_Leader_SFX.xml
[1426025.949] Status: Mods - Loading Platforms/Windows/Audio/DLC02_Speech.bnk
[1426025.949] Status: Mods - Loading Platforms/Windows/Audio/DLC02_Speech.txt
[1426025.949] Status: Mods - Loading Platforms/Windows/Audio/DLC02_Speech.xml
[1426025.949] Status: Mods - Loading Text/Poland_Translations_ConfigText.xml
[1426025.949] Status: Mods - Loading Text/Poland_Translations_Text.xml
[1426025.949] Status: Mods - Loading Text/en_US/Poland_Jadwiga_ConfigText.xml
[1426025.949] Status: Mods - Loading Text/en_US/Poland_Jadwiga_GameplayText.xml
[1426025.950] Status: Mods - Loading Rules.sql
[1426025.950] Status: Mods - Loading Config.xml
[1426025.950] Status: Mods - Loading ConfigText.xml
[1426025.950] Status: Mods - Loading CordiformEarth.lua
[1426025.950] Status: Mods - Loading Map.xml
[1426025.950] Status: Mods - Loading Tables.sql
[1426025.950] Status: Mods - Loading Config.xml
[1426025.950] Status: Mods - Loading Rules.sql
[1426025.951] Status: Mods - Loading Rules.sql
[1426025.951] Status: Mods - Loading GamePlayText.xml
[1426025.951] Status: Mods - Loading NewCityStates.sql
[1426025.951] Status: Mods - Loading NewCityStatesTexts.sql
[1426025.951] Status: Mods - Loading TSL.xml
[1426025.951] Status: Mods - Loading Tables.sql
[1426025.951] Status: Mods - Loading DLC4.dep
[1426025.951] Status: Mods - Loading Data/ARX/Civ_LEADER_ALEXANDER.png
[1426025.951] Status: Mods - Loading Data/ARX/Civ_LEADER_CYRUS.png
[1426025.951] Status: Mods - Loading Data/Macedonia_Persia_Colors.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_ConfigData.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_GameplayData.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_Icons_Buildings.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_Icons_Civilizations.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_Icons_Leaders.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_Icons_UnitActions.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_Icons_UnitPortraits.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_Icons_Units.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_Icons_Wonders.xml
[1426025.952] Status: Mods - Loading Data/Macedonia_Persia_PlayerColors.xml
[1426025.952] Status: Mods - Loading Platforms/Windows/Audio/DLC04Banks.ini
[1426025.952] Status: Mods - Loading Platforms/Windows/Audio/DLC04_Music_Bank.bnk
[1426025.953] Status: Mods - Loading Platforms/Windows/Audio/DLC04_Music_Bank.txt
[1426025.953] Status: Mods - Loading Platforms/Windows/Audio/DLC04_Music_Bank.xml
[1426025.953] Status: Mods - Loading Text/Macedonia_Persia_Translations_ConfigText.xml
[1426025.953] Status: Mods - Loading Text/Macedonia_Persia_Translations_Text.xml
[1426025.953] Status: Mods - Loading Text/en_US/Macedonia_Persia_CivilopediaText.xml
[1426025.953] Status: Mods - Loading Text/en_US/Macedonia_Persia_ConfigText.xml
[1426025.953] Status: Mods - Loading Text/en_US/Macedonia_Persia_GameplayText.xml
[1426025.953] Status: Mods - Loading Configuration/Config.xml
[1426025.953] Status: Mods - Loading Configuration/ConfigText.xml
[1426025.953] Status: Mods - Loading Configuration/ConfigText_pt_BR.xml
[1426025.953] Status: Mods - Loading Configuration/ConfigText_zh_Hans_CN.xml
[1426025.954] Status: Mods - Loading Configuration/ConfigText_zh_Hant_HK.xml
[1426025.954] Status: Mods - Loading Gameplay/CityNameByEra.xml
[1426025.954] Status: Mods - Loading Gameplay/GamePlay.sql
[1426025.954] Status: Mods - Loading Gameplay/GamePlay.xml
[1426025.954] Status: Mods - Loading Gameplay/GamePlayText.xml
[1426025.954] Status: Mods - Loading Gameplay/GamePlayText_pt_BR.xml
[1426025.954] Status: Mods - Loading Gameplay/Resource.xml
[1426025.954] Status: Mods - Loading Gameplay/Tables.sql
[1426025.954] Status: Mods - Loading Maps/GiantEarth/CityMap.xml
[1426025.954] Status: Mods - Loading Maps/GiantEarth/Config.xml
[1426025.954] Status: Mods - Loading Maps/GiantEarth/GiantEarth.lua
[1426025.955] Status: Mods - Loading Maps/GiantEarth/Map.xml
[1426025.955] Status: Mods - Loading Maps/GreatestEarthMap/CityMap.xml
[1426025.955] Status: Mods - Loading Maps/GreatestEarthMap/Config.xml
[1426025.955] Status: Mods - Loading Maps/GreatestEarthMap/GreatestEarthMap.lua
[1426025.955] Status: Mods - Loading Maps/GreatestEarthMap/Map.xml
[1426025.955] Status: Mods - Loading Maps/LargestEarth/CityMap.xml
[1426025.955] Status: Mods - Loading Maps/LargestEarth/Config.xml
[1426025.955] Status: Mods - Loading Maps/LargestEarth/LargestEarth.lua
[1426025.955] Status: Mods - Loading Maps/LargestEarth/Map.xml
[1426025.955] Status: Mods - Loading Maps/PlayEuropeAgain/CityMap.xml
[1426025.955] Status: Mods - Loading Maps/PlayEuropeAgain/CityMap_Arabia.xml
[1426025.956] Status: Mods - Loading Maps/PlayEuropeAgain/CityMap_Greece.xml
[1426025.956] Status: Mods - Loading Maps/PlayEuropeAgain/CityMap_Macedon.xml
[1426025.956] Status: Mods - Loading Maps/PlayEuropeAgain/CityMap_Rome.xml
[1426025.956] Status: Mods - Loading Maps/PlayEuropeAgain/Config.xml
[1426025.956] Status: Mods - Loading Maps/PlayEuropeAgain/Map.xml
[1426025.956] Status: Mods - Loading Maps/PlayEuropeAgain/PlayEuropeAgain.lua
[1426025.956] Status: Mods - Loading Override/AssignStartingPlots.lua
[1426025.956] Status: Mods - Loading Scripts/YnAMP_InGame.lua
[1426025.956] Status: Mods - Loading Scripts/YnAMP_InGame.xml
[1426025.956] Status: Mods - Loading Scripts/YnAMP_Script.lua
[1426025.957] Status: Mods - Loading Scripts/YnAMP_Utils.lua
[1426025.957] Status: Mods - Loading custom.sql
[1426025.957] Status: Mods - Loading custom.xml
[1426026.832] Status: Configuring game content
[1426026.832] Status: Current Configuration:
[1426026.832] Status: No active mods.
[1426026.833] Status: Target Configuration:
[1426026.833] Status: Mods:
[1426026.833] Status: F653805E-F7C8-44E1-8CBD-FB48D7AABCBA
[1426026.833] Status: 648CD2A8-057A-4EB5-9E41-E1F7D86B5443
[1426026.834] Status: {5E991A08-08FD-4774-968B-A85377ECF60D}
[1426026.834] Status: {455B6E2D-821D-4D49-9FCD-FC950AC6A521}
[1426026.834] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1426026.834] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1426026.834] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1426026.834] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1426026.835] Status: YnAMP - DLC compatibility (c69fa498-52bb-4807-923f-42f8ce21b3cc)
[1426026.835] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1426026.835] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1426026.835] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1426026.835] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1426026.838] Status: Game configuration needs to change to match target config.
[1426026.838] Status: Performing pre-configure processing.
[1426026.838] Status: Rebuilding configuration database.
[1426026.838] Status: Localization database unchanged, no rollback needed.
[1426026.838] Status: Configuration database unchanged, no rollback needed.
[1426026.838] Status: Applying settings.
[1426026.838] Status: Modding Framework - Apply Settings
[1426026.839] Status: Creating database save point.
[1426026.839] Status: ModdingUpdateConfigurationDatabase - Loading AncientRivalsScenario_Config.xml
[1426026.864] Status: Successfully released save point.
[1426026.864] Status: Creating database save point.
[1426026.864] Status: ModdingUpdateConfigurationDatabase - Loading ColdWarScenario_Config.xml
[1426026.917] Status: Successfully released save point.
[1426026.917] Status: Creating database save point.
[1426026.917] Status: ModdingUpdateConfigurationDatabase - Loading NapoleonScenario_Config.xml
[1426026.918] Status: Successfully released save point.
[1426026.918] Status: Creating database save point.
[1426026.918] Status: ModdingUpdateConfigurationDatabase - Loading ReligiousCombatScenario_Config.xml
[1426026.959] Status: Successfully released save point.
[1426026.960] Status: Creating database save point.
[1426026.960] Status: ModdingUpdateConfigurationDatabase - Loading Data/Aztec_Montezuma_ConfigData.xml
[1426027.014] Status: Successfully released save point.
 
Last edited by a moderator:
Code:
[1426027.014] Status: UISettingHandler - Loading DLC2.dep
[1426027.015] Status: Creating database save point.
[1426027.015] Status: ModdingUpdateConfigurationDatabase - Loading Data/Poland_Jadwiga_ConfigData.xml
[1426027.057] Status: Successfully released save point.
[1426027.058] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Buildings.xml
[1426027.058] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Civilizations.xml
[1426027.058] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Leaders.xml
[1426027.058] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Units.xml
[1426027.058] Status: Creating database save point.
[1426027.058] Status: LocalizedText - Loading Text/Poland_Translations_ConfigText.xml
[1426027.084] Status: LocalizedText - Loading Text/en_US/Poland_Jadwiga_ConfigText.xml
[1426027.113] Status: Successfully released save point.
[1426027.114] Status: Creating database save point.
[1426027.114] Status: ModdingUpdateConfigurationDatabase - Loading Configuration/Config.xml
[1426027.133] Status: ModdingUpdateConfigurationDatabase - Loading Maps/GiantEarth/Config.xml
[1426027.155] Status: ModdingUpdateConfigurationDatabase - Loading Maps/GreatestEarthMap/Config.xml
[1426027.205] Status: ModdingUpdateConfigurationDatabase - Loading Maps/PlayEuropeAgain/Config.xml
[1426027.251] Status: ModdingUpdateConfigurationDatabase - Loading Maps/LargestEarth/Config.xml
[1426027.284] Status: Successfully released save point.
[1426027.284] Status: Creating database save point.
[1426027.285] Status: LocalizedText - Loading Configuration/ConfigText.xml
[1426027.343] Status: LocalizedText - Loading Configuration/ConfigText_zh_Hans_CN.xml
[1426027.382] Status: LocalizedText - Loading Configuration/ConfigText_zh_Hant_HK.xml
[1426027.415] Status: LocalizedText - Loading Configuration/ConfigText_pt_BR.xml
[1426027.439] Status: Successfully released save point.
[1426027.439] Status: Creating database save point.
[1426027.439] Status: ModdingUpdateConfigurationDatabase - Loading Config.xml
[1426027.463] Status: Successfully released save point.
[1426027.463] Status: Creating database save point.
[1426027.463] Status: LocalizedText - Loading ConfigText.xml
[1426027.463] Status: Successfully released save point.
[1426027.464] Status: Creating database save point.
[1426027.464] Status: ModdingUpdateConfigurationDatabase - Loading Config.xml
[1426027.488] Status: Successfully released save point.
[1426027.488] Status: Modding Framework - Finished Apply Settings
[1426029.090] Status: Successfully reconfigured game.
[1432106.180] Status: Configuring game content
[1432106.180] Status: Current Configuration:
[1432106.180] Status: Mods:
[1432106.181] Status: F653805E-F7C8-44E1-8CBD-FB48D7AABCBA
[1432106.182] Status: 648CD2A8-057A-4EB5-9E41-E1F7D86B5443
[1432106.182] Status: {5E991A08-08FD-4774-968B-A85377ECF60D}
[1432106.183] Status: {455B6E2D-821D-4D49-9FCD-FC950AC6A521}
[1432106.183] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432106.184] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432106.184] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432106.185] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432106.185] Status: YnAMP - DLC compatibility (c69fa498-52bb-4807-923f-42f8ce21b3cc)
[1432106.186] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432106.186] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432106.187] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432106.187] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432106.191] Status: Target Configuration:
[1432106.191] Status: Mods:
[1432106.192] Status: F653805E-F7C8-44E1-8CBD-FB48D7AABCBA
[1432106.192] Status: 648CD2A8-057A-4EB5-9E41-E1F7D86B5443
[1432106.193] Status: {5E991A08-08FD-4774-968B-A85377ECF60D}
[1432106.193] Status: {455B6E2D-821D-4D49-9FCD-FC950AC6A521}
[1432106.194] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432106.194] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432106.195] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432106.195] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432106.196] Status: YnAMP - DLC compatibility (c69fa498-52bb-4807-923f-42f8ce21b3cc)
[1432106.196] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432106.197] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432106.197] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432106.197] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432106.201] Status: Game configuration matches target configuration.
[1432106.201] Status: Successfully reconfigured game.
[1432111.278] Status: Configuring game content
[1432111.278] Status: Current Configuration:
[1432111.278] Status: Mods:
[1432111.278] Status: F653805E-F7C8-44E1-8CBD-FB48D7AABCBA
[1432111.278] Status: 648CD2A8-057A-4EB5-9E41-E1F7D86B5443
[1432111.279] Status: {5E991A08-08FD-4774-968B-A85377ECF60D}
[1432111.279] Status: {455B6E2D-821D-4D49-9FCD-FC950AC6A521}
[1432111.279] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432111.279] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432111.279] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432111.279] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432111.280] Status: YnAMP - DLC compatibility (c69fa498-52bb-4807-923f-42f8ce21b3cc)
[1432111.280] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432111.280] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432111.280] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432111.280] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432111.281] Status: Target Configuration:
[1432111.281] Status: Mods:
[1432111.281] Status: F653805E-F7C8-44E1-8CBD-FB48D7AABCBA
[1432111.282] Status: 648CD2A8-057A-4EB5-9E41-E1F7D86B5443
[1432111.282] Status: {5E991A08-08FD-4774-968B-A85377ECF60D}
[1432111.282] Status: {455B6E2D-821D-4D49-9FCD-FC950AC6A521}
[1432111.282] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432111.282] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432111.282] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432111.283] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432111.283] Status: YnAMP - DLC compatibility (c69fa498-52bb-4807-923f-42f8ce21b3cc)
[1432111.283] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432111.283] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432111.283] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432111.283] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432111.286] Status: Game configuration matches target configuration.
[1432111.286] Status: Successfully reconfigured game.
[1432226.532] Status: Configuring game content
[1432226.532] Status: Current Configuration:
[1432226.532] Status: Mods:
[1432226.533] Status: F653805E-F7C8-44E1-8CBD-FB48D7AABCBA
[1432226.533] Status: 648CD2A8-057A-4EB5-9E41-E1F7D86B5443
[1432226.533] Status: {5E991A08-08FD-4774-968B-A85377ECF60D}
[1432226.533] Status: {455B6E2D-821D-4D49-9FCD-FC950AC6A521}
[1432226.534] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432226.534] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432226.534] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432226.534] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432226.534] Status: YnAMP - DLC compatibility (c69fa498-52bb-4807-923f-42f8ce21b3cc)
[1432226.534] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432226.535] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432226.535] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432226.535] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432226.536] Status: Target Configuration:
[1432226.536] Status: Mods:
[1432226.536] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432226.536] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432226.537] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432226.537] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432226.537] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432226.537] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432226.537] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432226.538] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432226.540] Status: Game configuration needs to change to match target config.
[1432226.540] Status: Performing pre-configure processing.
[1432226.540] Status: Rebuilding configuration database.
[1432226.541] Status: Reverted Localization database to its original state.
[1432226.554] Status: Reverted Configuration database to its original state.
[1432226.554] Status: Applying settings.
[1432226.554] Status: Modding Framework - Apply Settings
[1432226.554] Status: Creating database save point.
[1432226.554] Status: ModdingUpdateConfigurationDatabase - Loading Data/Aztec_Montezuma_ConfigData.xml
[1432226.555] Status: Successfully released save point.
[1432226.555] Status: UISettingHandler - Loading DLC2.dep
[1432226.556] Status: Creating database save point.
[1432226.556] Status: ModdingUpdateConfigurationDatabase - Loading Data/Poland_Jadwiga_ConfigData.xml
[1432226.556] Status: Successfully released save point.
[1432226.556] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Buildings.xml
[1432226.556] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Civilizations.xml
[1432226.556] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Leaders.xml
[1432226.557] Status: UpdateIcons - Loading Data/Poland_Jadwiga_Icons_Units.xml
[1432226.557] Status: Creating database save point.
[1432226.557] Status: LocalizedText - Loading Text/Poland_Translations_ConfigText.xml
[1432226.561] Status: LocalizedText - Loading Text/en_US/Poland_Jadwiga_ConfigText.xml
[1432226.562] Status: Successfully released save point.
[1432226.562] Status: Creating database save point.
[1432226.563] Status: ModdingUpdateConfigurationDatabase - Loading Configuration/Config.xml
[1432226.564] Status: ModdingUpdateConfigurationDatabase - Loading Maps/GiantEarth/Config.xml
[1432226.564] Status: ModdingUpdateConfigurationDatabase - Loading Maps/GreatestEarthMap/Config.xml
[1432226.565] Status: ModdingUpdateConfigurationDatabase - Loading Maps/PlayEuropeAgain/Config.xml
[1432226.566] Status: ModdingUpdateConfigurationDatabase - Loading Maps/LargestEarth/Config.xml
[1432226.566] Status: Successfully released save point.
[1432226.566] Status: Creating database save point.
[1432226.566] Status: LocalizedText - Loading Configuration/ConfigText.xml
[1432226.569] Status: LocalizedText - Loading Configuration/ConfigText_zh_Hans_CN.xml
[1432226.571] Status: LocalizedText - Loading Configuration/ConfigText_zh_Hant_HK.xml
[1432226.573] Status: LocalizedText - Loading Configuration/ConfigText_pt_BR.xml
[1432226.576] Status: Successfully released save point.
[1432226.577] Status: Creating database save point.
[1432226.577] Status: ModdingUpdateConfigurationDatabase - Loading Config.xml
[1432226.577] Status: Successfully released save point.
[1432226.577] Status: Creating database save point.
[1432226.577] Status: LocalizedText - Loading ConfigText.xml
[1432226.578] Status: Successfully released save point.
[1432226.578] Status: Modding Framework - Finished Apply Settings
[1432227.470] Status: Successfully reconfigured game.
[1432228.089] Status: Configuring game content
[1432228.089] Status: Current Configuration:
[1432228.089] Status: Mods:
[1432228.089] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432228.089] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432228.089] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432228.090] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432228.090] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432228.090] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432228.090] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432228.090] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432228.091] Status: Target Configuration:
[1432228.091] Status: Mods:
[1432228.092] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432228.092] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432228.092] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432228.092] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432228.092] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432228.093] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432228.093] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432228.093] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432228.095] Status: Game configuration matches target configuration.
[1432228.095] Status: Successfully reconfigured game.
[1432228.095] Status: Updating game content
[1432228.095] Status: Configuring game content
[1432228.095] Status: Current Configuration:
[1432228.095] Status: Mods:
[1432228.095] Status: 02A8BDDE-67EA-4D38-9540-26E685E3156E
[1432228.096] Status: 3809975F-263F-40A2-A747-8BFB171D821A
[1432228.096] Status: YnAMP - Cliffs of Dover Yield Tweak (01b1bea6-a3bf-4f62-9509-3fa72bcde734)
[1432228.096] Status: YnAMP - Cordiform Earth (514aaa88-ffd2-475f-ace6-ea49b34a100a)
[1432228.096] Status: YnAMP - Faster Border Growth (85e1fe7e-3cc6-4b16-9899-d2761d92569a)
[1432228.096] Status: YnAMP - Faster Movements (fe414872-157f-4749-b3e9-29d0603ec62e)
[1432228.096] Status: YnAMP - More CS for the World (b7069e24-fb9c-4393-b836-44ec5c3dea98)
[1432228.097] Status: Yet (not) Another Maps Pack (36e88483-48fe-4545-b85f-bafc50dde315)
[1432228.098] Status: Target Configuration:
[1432228.098] Status: Mods:
 
Last edited by a moderator:
Back
Top Bottom