OrionVeteran
Deity
So nothing has to be done to the Inquistion.py then? ]
Forgot that one. Try this:
Spoiler :
Code:
def CTFRinit():
global bReligiousTechInitDone
if not bReligiousTechInitDone:
data = {
"TECH_MEDITATION" :4,
"TECH_POLYTHEISM" :4,
"TECH_MASONRY" :4,
"TECH_BLOOD_CULT" :4,
"TECH_MONOTHEISM" :8,
"TECH_WRITING" :8,
"TECH_SHIP_BUILDING" :8,
"TECH_DUALISM" :8,
"TECH_LITERATURE" :12,
"TECH_CODE_OF_LAWS" :12,
"TECH_THEOLOGY" :12,
"TECH_SCULPTURE" :12,
"TECH_PHILOSOPHY" :16,
"TECH_FEUDALISM" :16,
"TECH_CITY_PLANNING" :16,
"TECH_EDUCATION" :16
}
for szTech, iMax in data.iteritems():
iTech = gc.getInfoTypeForString(szTech)
if iTech != -1:
Of course you can change the order to more accurately relect your tech sequence.
Orion Veteran
