New Civ not playable

Qarthadast

Chieftain
Joined
Aug 2, 2011
Messages
19
Hi,
I edited The Khmer Civilization of Hukkak's Extra Civ Pack. First I renamed them to Srivijaya (just in the de_DE rows), I edited the civ bonus and I gave them the Wat as special building. Then I deleted all other civs of the CIV Pack because I just wanna play Srivijaya and no others.

Now, when I'm trying to set up a new game, the right screen appears, but I can't scroll down, so I just can choose the first 4 civs. What dould I've done wrong?

see attachement for the fully edited mod
 

Attachments

You are missing a UnitClassOverride in the xml files.
No unique unit = no civ, it will break it.

This is a simple fix.

Code:
<Civilization_UnitClassOverrides>
<Row>
<CivilizationType>CIVILIZATION_</CivilizationType>
<UnitClassType>UNITCLASS_OLD</UnitClassType>
<UnitType>UNIT_NEW</UnitType>
</Row>
</Civilization_UnitClassOverrides>
 
Thanks! This helped me with one of my own problems. Now to fix the Unique Building causing a civ to not show up error.
 
Same problem. :)

Or the Buildings update is failing, in which case it'll probably crash.

I didn't check the XML for this one, so I might be wrong.
 
@ Putmalk: Thanks, but I think I have it:

HTML:
<Civilization_UnitClassOverrides>
		<Row>
			<CivilizationType>CIVILIZATION_KHMER</CivilizationType>
			<UnitClassType>UNITCLASS_CHARIOT_ARCHER</UnitClassType>
			<UnitType>UNIT_BALLISTA_ELEPHANT</UnitType>
		</Row>
	</Civilization_UnitClassOverrides>

what do you mean with building update?

Or could the problem be that I use the same UU as the Siamese Empire?
 
I meant the building update file. I don't know, I'd have to check later. Not now though, my head is spinning.
 
Checking now, sorry I've been caught up in getting mesopotamia to work.

Code:
                 <Row>
			<CivilizationType>CIVILIZATION_KHMER</CivilizationType>
			<BuildingClassType>BUILDINGCLASS_UNIVERSITY</BuildingClassType>
			[B]<BuildingType>BUILDINGCLASS_WAT</BuildingType>[/B]
		</Row>

Do not define building classes in Buildingtype. It should be "BUILDING_WAT".

You did this for Khmer and not Portugal.
 
It was my pleasure. :) If you have other questions, do not hesitate to ask.
 
Back
Top Bottom