• Civilization 7 has been announced. For more info please check the forum here .

removal of tech/unit

Esckey

Deity
Joined
May 26, 2002
Messages
2,321
Location
Canada
whats a quick and easy way to remove a tech or unit from the game?

I'm tired of most of my wars coming down to who has the most nukes, takes all the fun out of a land war in asia
 
There's an XML tag for disabling techs.
Set
<bDisable>0</bDisable>
in Assets/XML/Technologies/TechInfos.xml
to
<bDisable>1</bDisable>
The quick and easy way to remove a unit from the game is to have it require a disabled tech.

In Units/UnitInfos find the unit and change this tag

<PrereqTech>TECH_GUNPOWDER</PrereqTech> or whatever, to
<PrereqTech>TECH_FUTURE_TECH</PrereqTech> or whatever tech you have disabled.
 
Top Bottom