How do you make a unit not obsolete?

501st Legion

Warlord
Joined
Oct 29, 2009
Messages
107
I want to recruit Chu-Ko-Nu in late game when I already have Future Tech. Any way to make the game ignore this line

<UnitType>UNIT_CHINESE_CHUKONU</UnitType>
<UnitClassType>UNITCLASS_RIFLEMAN</UnitClassType>

via XML?
 
I want to recruit Chu-Ko-Nu in late game when I already have Future Tech. Any way to make the game ignore this line

<UnitType>UNIT_CHINESE_CHUKONU</UnitType>
<UnitClassType>UNITCLASS_RIFLEMAN</UnitClassType>

via XML?

To make units not obsolete, you just need to modify the line:
Code:
<ObsoleteTech>TECH_TELEGRAPH</ObsoleteTech>
Or whatever Tech it is. Change it (using update tags for whatever unit) to:
Code:
<ObsoleteTech>NONE</ObsoleteTech>
And that should stop obsolescence.
 
If you get rid of the obsolete tech the unit doesn't become obsolete, but you can still upgrade it if you want to.
 
Back
Top Bottom