Can't remove city state

DasGuntLord01

Chieftain
Joined
Feb 11, 2010
Messages
80
I am having problems with mods, both that I have made and that others have made. It seems no mod that I have downloaded, or made myself, is updated in the database (and it certainly doesn't seem to work when I'm in game.) I know that modifying the original files can do this, but I have not been modifying the originals.

What else can cause this?
 
Disregard, it's just MY mods, even if they are verbatim copies of other mods I've seen...

I've seen some other people having the same problems. I've seen some other people managing to fix theres. I still can't fix mine, and I can't see what I've done wrong. In this instance, I'm simply trying to remove dublin from the game. Can anyone lend a hand?

Code:
<?xml version="1.0" encoding="utf-8"?>
<Mod id="f2fc09c3-e28b-4931-a42a-053221b78d04" version="1">
  <Properties>
    <Name>Deleting a Minor Civ</Name>
    <Stability>Alpha</Stability>
    <Description>Removes Dublin from the game</Description>
    <Authors>Gunther</Authors>
    <AffectsSavedGames>1</AffectsSavedGames>
    <MinCompatibleSaveVersion>0</MinCompatibleSaveVersion>
    <SupportsSinglePlayer>1</SupportsSinglePlayer>
    <SupportsMultiplayer>1</SupportsMultiplayer>
    <SupportsMac>1</SupportsMac>
    <ReloadLandmarkSystem>0</ReloadLandmarkSystem>
    <ReloadUnitSystem>0</ReloadUnitSystem>
  </Properties>
  <Dependencies />
  <References />
  <Blocks />
  <Files>
    <File md5="96C4C2C3E82C219BCA99543448B96AC3">XML/Civilizations/DeleteCiv.xml</File>
  </Files>
  <Actions>
    <OnModActivated>
      <UpdateDatabase>XML/Civilizations/DeleteCiv.xml</UpdateDatabase>
    </OnModActivated>
  </Actions>
</Mod>

Code:
<GameData>
    <MinorCivilizations>
        <Delete Type="MINOR_CIV_DUBLIN" />
    </MinorCivilizations>

    <MinorCivilization_CityNames>
        <Delete Type="MINOR_CIV_DUBLIN" />
    </MinorCivilization_CityNames>

    <MinorCivilization_Flavors>
        <Delete Type="MINOR_CIV_DUBLIN" />
    </MinorCivilization_Flavors>
    
</GameData>

EDIT: All of the existing city state mods appear not to work for me. Is city state modding bugged?

EDIT EDIT: Since I just successfully changed the speed of a warrior, I have to assume that city-state modding is bugged, or at least more complicated than I've been led to believe.
 

Attachments

  • PropertiesScreenie.jpg
    PropertiesScreenie.jpg
    239.9 KB · Views: 97
i forget the exact syntax but you basically just need to find and delete MINOR_CIV_DUBLIN with the update/delete commands
 
The examples given simply use

Code:
	<MinorCivilizations>
		<Delete Type="MINOR_CIV_DUBLIN" />
	</MinorCivilizations>

Which, for me, doesn't work.

I know my syntax is spot on, because

Code:
	<Buildings>
		<Delete Type="BUILDING_MONUMENT" />
	</Buildings>

Works perfectly fine.
 
Back
Top Bottom