pookie wocket
Chieftain
- Joined
- Oct 23, 2016
- Messages
- 4
So I really love the new Rock Band feature in Gathering Storm. The fact that you have to name your rock bands, and that there is a silly random generator just for suggesting rock band names is pointless but awesome!
I immediately wanted to tweak the list to make its rock band name suggestions more to my taste. I thought this should be very simple. There should be a list of words somewhere and all I have to do is add and subtract from that list, right?
Well, there IS a list. I found it pretty much right away. Expansion2_UnitNames_Text under \steamapps\common\Sid Meier's Civilization VI\DLC\Expansion2\Text\en_US appeared to be the XML file that had all the words for generating band names, divided into prefixes and suffixes. OK, great! I got to work deleting the boring ones and adding some new ones that I thought would be cool or funny. I was careful to follow the same syntax used in the base file. Here are examples of an original rock band prefix and suffix:
Now I might like to add something like:
I saved the file and fired up the game. I loaded up my current save and started generating rock band names. But wait, the suggestions coming up didn't have any of my new words. And they definitely contained words I had removed.
As far as I can tell, my XML is valid. The database.log doesn't seem to contain any errors specific to me (there is a 'no gamedata...' error that apparently never goes away but that's it). It just seems like my changes aren't getting incorporated into the game's database.
I thought editing the rock band name generator suggestions would be really straightforward. I would like to avoid having to write a mod just to do this! However this is driving me crazy and I really want to figure it out, so I am open to suggestions here. Please help! Thank you in advance.
I immediately wanted to tweak the list to make its rock band name suggestions more to my taste. I thought this should be very simple. There should be a list of words somewhere and all I have to do is add and subtract from that list, right?
Well, there IS a list. I found it pretty much right away. Expansion2_UnitNames_Text under \steamapps\common\Sid Meier's Civilization VI\DLC\Expansion2\Text\en_US appeared to be the XML file that had all the words for generating band names, divided into prefixes and suffixes. OK, great! I got to work deleting the boring ones and adding some new ones that I thought would be cool or funny. I was careful to follow the same syntax used in the base file. Here are examples of an original rock band prefix and suffix:
Code:
<Row Tag="LOC_UNITNAME_ROCK_BAND_PREFIX_FLYING">
<Text>Flying</Text>
</Row>
<Row Tag="LOC_UNITNAME_ROCK_BAND_SUFFIX_HATS">
<Text>Hats</Text>
</Row>
Now I might like to add something like:
Code:
<Row Tag="LOC_UNITNAME_ROCK_BAND_PREFIX_DANGEROUS">
<Text>Dangerous</Text>
</Row>
<Row Tag="LOC_UNITNAME_ROCK_BAND_SUFFIX_WEASEL">
<Text>Weasel</Text>
</Row>
I saved the file and fired up the game. I loaded up my current save and started generating rock band names. But wait, the suggestions coming up didn't have any of my new words. And they definitely contained words I had removed.
As far as I can tell, my XML is valid. The database.log doesn't seem to contain any errors specific to me (there is a 'no gamedata...' error that apparently never goes away but that's it). It just seems like my changes aren't getting incorporated into the game's database.
I thought editing the rock band name generator suggestions would be really straightforward. I would like to avoid having to write a mod just to do this! However this is driving me crazy and I really want to figure it out, so I am open to suggestions here. Please help! Thank you in advance.