Dancing Hoskuld
Deity
Kingdom/Queendom and a couple of others were asked for but I can't remember which now. It was only a couple and that example was the least of them (but the only one I can recall and probably spell too).
Hopefully, here it is, with setCivName. It's a working dll but I did not test the Python function.
You might need more than just that, but that's largely enough for me for today...![]()
def onBeginPlayerTurn(self, argsList):
'Called at the beginning of a players turn'
iGameTurn, iPlayer = argsList
## Dynamic Civ ##
pPlayer = gc.getPlayer(iPlayer)
pPlayer.setCivName("AAA", "BBB", "CCC")
## Dynamic Civ ##
## All other civilizations not listed below ##
"CIVILIZATION_OTHERS":[ [["RELIGION_HINDUISM"], ## Requires Hinduism Only
["TXT_KEY_PEDIA_CATEGORY_BUILDING", "TXT_KEY_PEDIA_CATEGORY_BUILDING", "TXT_KEY_PEDIA_CATEGORY_BUILDING"]],
[["CIVIC_DESPOTISM", "RELIGION_NONE"], ## Requires Depotism and No State Religion
["TXT_KEY_PITBOSS_TEAM", "TXT_KEY_PITBOSS_TEAM", "TXT_KEY_PITBOSS_TEAM"]], ## Desc, Adj, Short
[["VASSAL_FALSE"], ## Not a Vassal
["TXT_KEY_INFO_SCREEN", "TXT_KEY_INFO_SCREEN", "TXT_KEY_INFO_SCREEN"]],
],
## Specific Civilizations ##
"CIVILIZATION_ROME": [ [["RELIGION_HINDUISM", "ERA_MODERN", "CIVIC_DESPOTISM"], ## Requires Hinduism, Modern Era AND Depostism Civics
["TXT_KEY_CONCEPT_CITIES", "TXT_KEY_CONCEPT_CITIES", "TXT_KEY_CONCEPT_CITIES"]],
[["ERA_MODERN"],
["TXT_KEY_CONCEPT_EVENTS", "TXT_KEY_CONCEPT_EVENTS", "TXT_KEY_CONCEPT_EVENTS"]],
],
"CIVILIZATION_SPAIN": [ [["RELIGION_HINDUISM"],
["TXT_KEY_CONCEPT_WONDERS", "TXT_KEY_CONCEPT_WONDERS", "TXT_KEY_CONCEPT_WONDERS"]],
],
I agree with that statement. However perhaps a bit naively in a case like this I assume people have some great ideas and I just totally miss the point. I do want mod development to progress, but at the same time I wish it would focus on something a bit more interesting for the gameplay than this one.Actually, I don't really understand the need to change the Civ short description or adjective. Whether it is the Roman Empire, Roman Queendom or Roman Tribe, it is still Rome and Romans, no? But that's up to the user of this Mod comp to tell you.
##################################################################################################
### Conditions ##
## Religions: "RELIGION_HINDUISM": Requires Specific Religion ##
## "RELIGION_NONE": Requires No State Religion ##
## Civics: "CIVIC_DESPOTISM": Requires Specific Civics ##
## Era: "ERA_MODERN": Current Era >= Specific Era ##
## States: "STATE_GOLDEN": Golden Age ##
## "STATE_ANARCHY": Anarchy ##
## "STATE_VASSAL": Vassal States ##
## "STATE_MINOR": Minor Civ ##
## "STATE_BARBARIAN": Barbarian ##
## Cities: "CITY_MAX_050": At Most 50 Cities ##
## "CITY_MIN_020": At Least 20 Cities ##
##################################################################################################
### Name Change ##
## [Prefix, Desc, Short, Adj ##
## Prefix will be added in front of Desc and Short ##
## ["AAA", "", "", ""] will just add a Prefix of "AAA" without changing the rest ##
## ["", "BBB", "CCC", ""] will just change the Desc and Short without changing Adj ##
##################################################################################################