Need Syntax for Global Defines (Post Defines!)

CivWarGamer

Warlord
Joined
Oct 16, 2011
Messages
130
Doesn't seem possible. I need to change the following entry found in the Global Defines/PostDefines section to reflect ERA_ANCIENT as the Key. What is the correct syntax? Thanks.

Original game code pasted below:

<PostDefines>
<Row Name="LAST_EMBARK_ART_ERA">
<Key>ERA_INDUSTRIAL</Key>
<Table>Eras</Table>
</Row>

</PostDefines>
 
nobody knows, huh?
 
disregard, it does work.

My original probem was that the embark art for crossing oceans kept showing as "colonial" despite me updating the LAST_EMBARK_ART_ERA in post defines. So I tried another route, I updated the DEEP_WATER_TERRAIN in postdefines to coast and that has fixed my problem.
 
great, changing ocean to coast tiles broke the embarkment and units can't enter the water. stupid
 
This is dumb because if I set a technology to allow embarkment across oceans then it forces the embarked artwork to appear as colonial age. Not ideal for an ancient era mod.
 
Cool, after 5 hours of experimentation, finally fixed it. Not sure why it fixes the artwork bug, but it works.

<UnitPromotions>
<Update>
<Where Type="PROMOTION_EMBARKATION"/>
<Set EmbarkedAllWater="true"/>
</Update>
</UnitPromotions>
 
Back
Top Bottom