YnAMP - Yet (not) Another Maps Pack

YnAMP - Development thread Civ6

and could someone post the "Macedonia_Persia_Expansion1.xml" file here (attached in a zip or between [ code ] tags if it's not too big)
 
Thanks, I have a theory, but I need someone to edit some of the game's files.

It would require to edit the .modinfos that are found in each DLC folder, for example for Poland it's Poland_Jadwiga.modinfo found in "..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Poland_Jadwiga"

In all file, find the <UpdateDatabase> tag related to the expansion, for Poland it's this section:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

and replace it with this:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

Note that you may not have to edit all modinfo, the fastest way to test this would be to activate all DLC, R&F and YnAMP, then launch a game, and after being sent to the main menu, open Modding.log, search for "ERROR: Failed to release save point", it'll give you a file name above like this:
Code:
[1994494.475] UpdateDatabase - Loading Data/Poland_Jadwiga_Expansion1.xml
[1994494.483] ERROR: Failed to release save point.

In the case above, test by editing the modinfo for the Poland DLC, if it point to a file from another DLC, edit that one.

If there is more than one line with "ERROR: Failed to release save point" edit all corresponding modinfo files.
 
Last edited:
Thanks, I have a theory, but I need someone to edit some of the game's files.

It would require to edit the .modinfos that are found in each DLC folder, for example for Poland it's Poland_Jadwiga.modinfo found in "..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Poland_Jadwiga"

In all file, find the <UpdateDatabase> tag related to the expansion, for Poland it's this section:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

and replace it with this:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

Not that you may not have to edit all modinfo, the fastest way to test this would be to activate all DLC, R&F and YnAMP, then launch a game, and after being sent to the main menu, open Modding.log, search for "ERROR: Failed to release save point", it'll give you a file name above like this:
Code:
[1994494.475] UpdateDatabase - Loading Data/Poland_Jadwiga_Expansion1.xml
[1994494.483] ERROR: Failed to release save point.

In the case above, test by editing the modinfo for the Poland DLC, if it point to a file from another DLC, edit that one.

If there is more than one line with "ERROR: Failed to release save point" edit all corresponding modinfo files.
I'll do a try and let you know
 
Thanks, I have a theory, but I need someone to edit some of the game's files.

It would require to edit the .modinfos that are found in each DLC folder, for example for Poland it's Poland_Jadwiga.modinfo found in "..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Poland_Jadwiga"

In all file, find the <UpdateDatabase> tag related to the expansion, for Poland it's this section:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

and replace it with this:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

Not that you may not have to edit all modinfo, the fastest way to test this would be to activate all DLC, R&F and YnAMP, then launch a game, and after being sent to the main menu, open Modding.log, search for "ERROR: Failed to release save point", it'll give you a file name above like this:
Code:
[1994494.475] UpdateDatabase - Loading Data/Poland_Jadwiga_Expansion1.xml
[1994494.483] ERROR: Failed to release save point.

In the case above, test by editing the modinfo for the Poland DLC, if it point to a file from another DLC, edit that one.

If there is more than one line with "ERROR: Failed to release save point" edit all corresponding modinfo files.
This is the modding file after launched a game with ALL civilizations on Giant Earth, with R&F
 

Attachments

It seems to have problems with the Vikings scenario and Australia expansion. These are the only two errors I found in the file
 
This is the modding file after launched a game with ALL civilizations on Giant Earth, with R&F
thanks, so
Code:
[2070066.316] UpdateDatabase - Loading Data/VikingsLandmarks_Expansion1.xml
[2070066.329] ERROR: Failed to release save point.
Code:
[2070067.914] UpdateDatabase - Loading Data/Australia_Expansion1.xml
[2070067.925] ERROR: Failed to release save point.

from your log, you'll have to edit the modinfo for Vikings and Australia

find
Code:
        <UpdateDatabase id="AustraliaGameplay_XP1" criteria="Australia_Expansion1">
            <File>Data/Australia_Expansion1.xml</File>
        </UpdateDatabase>

in ..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Australia\Australia.modinfo (you can open it with notepad)

and change it to

Code:
        <UpdateDatabase id="AustraliaGameplay_XP1" criteria="Australia_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
            <File>Data/Australia_Expansion1.xml</File>
        </UpdateDatabase>

and find

Code:
    <UpdateDatabase id="VIKINGLANDMARKS_DATA_XP1" criteria="VikingLandmarks_Expansion1">
      <File>Data/VikingsLandmarks_Expansion1.xml</File>
    </UpdateDatabase>

in ..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\VikingsLandmarks\VikingsLandmarks.modinfo

and change it to
Code:
    <UpdateDatabase id="VIKINGLANDMARKS_DATA_XP1" criteria="VikingLandmarks_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
      <File>Data/VikingsLandmarks_Expansion1.xml</File>
    </UpdateDatabase>

edit: then quit the game (if you haven't already) and relaunch it and try to start a new game (do not change the activated DLC)
 
thanks, so
Code:
[2070066.316] UpdateDatabase - Loading Data/VikingsLandmarks_Expansion1.xml
[2070066.329] ERROR: Failed to release save point.
Code:
[2070067.914] UpdateDatabase - Loading Data/Australia_Expansion1.xml
[2070067.925] ERROR: Failed to release save point.

from your log, you'll have to edit the modinfo for Vikings and Australia

find
Code:
        <UpdateDatabase id="AustraliaGameplay_XP1" criteria="Australia_Expansion1">
            <File>Data/Australia_Expansion1.xml</File>
        </UpdateDatabase>

in ..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Australia\Australia.modinfo (you can open it with notepad)

and change it to

Code:
        <UpdateDatabase id="AustraliaGameplay_XP1" criteria="Australia_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
            <File>Data/Australia_Expansion1.xml</File>
        </UpdateDatabase>

and find

Code:
    <UpdateDatabase id="VIKINGLANDMARKS_DATA_XP1" criteria="VikingLandmarks_Expansion1">
      <File>Data/VikingsLandmarks_Expansion1.xml</File>
    </UpdateDatabase>

in ..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\VikingsLandmarks\VikingsLandmarks.modinfo

and change it to
Code:
    <UpdateDatabase id="VIKINGLANDMARKS_DATA_XP1" criteria="VikingLandmarks_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
      <File>Data/VikingsLandmarks_Expansion1.xml</File>
    </UpdateDatabase>

edit: then quit the game (if you haven't already) and relaunch it and try to start a new game (do not change the activated DLC)
ok did it, now I'll try to launch the same game. If I try with WorldBuilder, is it the same?
 
back to main menu :(. Log?
Well, now it's Macedonia and Poland... I've posted Poland as an example, IDK the path for the Macedonia DLC, but it should have the same structure...
 
Thanks, I have a theory, but I need someone to edit some of the game's files.

It would require to edit the .modinfos that are found in each DLC folder, for example for Poland it's Poland_Jadwiga.modinfo found in "..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Poland_Jadwiga"

In all file, find the <UpdateDatabase> tag related to the expansion, for Poland it's this section:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

and replace it with this:
Code:
        <UpdateDatabase id="PolandJadwigaGameplay_XP1" criteria="PolandJadwiga_Expansion1">
               <Properties>
                <LoadOrder>2</LoadOrder>
               </Properties>
            <File>Data/Poland_Jadwiga_Expansion1.xml</File>
        </UpdateDatabase>

Not that you may not have to edit all modinfo, the fastest way to test this would be to activate all DLC, R&F and YnAMP, then launch a game, and after being sent to the main menu, open Modding.log, search for "ERROR: Failed to release save point", it'll give you a file name above like this:
Code:
[1994494.475] UpdateDatabase - Loading Data/Poland_Jadwiga_Expansion1.xml
[1994494.483] ERROR: Failed to release save point.

In the case above, test by editing the modinfo for the Poland DLC, if it point to a file from another DLC, edit that one.

If there is more than one line with "ERROR: Failed to release save point" edit all corresponding modinfo files.
it worked !!
 
i tried the github file. it works but i have to set city states to 0 otherwise i crash turn 1. this is with the greatest earth map
 
Last edited:
Where can one find this modding.log file?

oh, it's here \Documents\my games\Sid Meier's Civilization VI\Logs

Great! This works! It was only the Aztec in my case so it went very smooth and fast.
 
Last edited:
Well, now it's Macedonia and Poland... I've posted Poland as an example, IDK the path for the Macedonia DLC, but it should have the same structure...

can confirm, working for giant earth and greatest earth map

- so the conclusion is, firaxis forgot to put a correct loading order in for expansion1 ?

anyway, now i get the new natural wonders in, and I am a happy man :) - thx a million times gedemon
 
Back
Top Bottom