Is there a way to change city-state names?

LoneGamer

Warlord
Joined
Sep 27, 2010
Messages
138
I know we can add new ones, but can we change say Edinburgh to say Caerdydd?
I've tried the <Update> thing with <MinorCivilization_CityNames> with no success. Would I have to use the delete command and then add another one? If so how would I go about that as I am new to lua?

Cheers.
 
I will begin with saying I have not actually tried this and am not at a PC to do it but as far as I know all you would need to do to change something like Warsaw to Bobstown would be:


Code:
<GameData>
	<Language_en_US>
		<Update>
			<Set Text="Bobstown"/>
			<Where Tag="TXT_KEY_CITYSTATE_WARSAW"/>
		<Update>
		<Update>
			<Set Text="Bobstown"/>
			<Where Tag="TXT_KEY_CIV5_WARSAW_TITLE"/>
		<Update>
	</Language_en_US>
</GameData>
Which would change the city name itself with TXT_KEY_CITYSTATE_WARSAW and the pedia entry with TXT_KEY_CIV5_WARSAW_TITLE.
 
THANK YOU!

That works, I don't know why I didn't think of that. Much appreciated. :D

Cheers!
 
THANK YOU!

That works, I don't know why I didn't think of that. Much appreciated. :D

Cheers!

NP, but thats just the most basic change, you might want to change TXT_KEY_CIV5_WARSAW_TEXT as well which has the pedia entry text for warsaw. If nothing else change it to "Not yet available" or something.
 
Back
Top Bottom