Elements of mod wont show up in game

j51

Blue Star Cadet
Joined
Oct 22, 2006
Messages
1,750
Location
Ping Island
I'm making a mod and while its mostly going well, there are a few changes I made that won't show up: The changes in art style, the deletion of religious preferences, and the terrain placements. I've pasted the xml:

Spoiler :
<GameData>
<Civilizations>
<update>
<Set ArtStyleType="ARTSTYLE_POLYNESIAN"/>
<Where Type="CIVILIZATION_INDIA"/>
</update>
<update>
<Set ArtStyleType="ARTSTYLE_GRECO_ROMAN"/>
<Where Type="CIVILIZATION_OTTOMAN"/>
</update>
<update>
<Set ArtStyleType="ARTSTYLE_POLYNESIAN"/>
<Where Type="CIVILIZATION_SIAM"/>
</update>
<update>
<Set ArtStyleType="ARTSTYLE_MIDDLE_EAST"/>
<Where Type="CIVILIZATION_CARTHAGE"/>
</update>
<update>
<Set ArtStyleType="ARTSTYLE_GRECO_ROMAN"/>
<Where Type="CIVILIZATION_SPAIN"/>
</update>
</Civilizations>

<Civilization_Religions>
<Delete/>
</Civilization_Religions>

<Civilization_Start_Along_Ocean>
<Delete CivilizationType="CIVILIZATION_OTTOMAN"/>
<Delete CivilizationType="CIVILIZATION_SPAIN"/>
<Row>
<CivilizationType>CIVILIZATION_BYZANTIUM</CivilizationType>
<StartAlongOcean>true</StartAlongOcean>
</Row>
</Civilization_Start_Along_Ocean>

<Civilization_Start_Region_Avoid>
<Delete CivilizationType="CIVILIZATION_SONGHAI"/>
<Delete CivilizationType="CIVILIZATION_SIAM"/>
</Civilization_Start_Region_Avoid>

<Civilization_Start_Region_Priority>
<Delete CivilizationType="CIVILIZATION_AZTEC"/>
<Row>
<CivilizationType>CIVILIZATION_HUNS</CivilizationType>
<RegionType>TXT_KEY_REGION_PLAINS</RegionType>
</Row>
</Civilization_Start_Region_Priority>

<Civilization_Start_Along_River>
<Delete CivilizationType="CIVILIZATION_AMERICA"/>
<Row>
<CivilizationType>CIVILIZATION_SONGHAI</CivilizationType>
<StartAlongRiver>true</StartAlongRiver>
</Row>
</Civilization_Start_Along_River>
</GameData>
 
XML is case-sensitive, so all the <update> tags should be <Update>, which will cause the file to fail, which is probably causing the other problems.
 
Back
Top Bottom