Civs colors are determined by five columns: <Type>, <Red>, <Green>, <Blue> and <Alpha>. Messing with Type isn't necessary as long as you aren't adding a new color. For Red, Green and Blue, you take the RGB values of your desired color and divide by 255 to get a decimal that you input.
Don't mess with Alpha unless you're looking to break something.
So! When you've figured out the new colors you want to use:
Code:
<GameData>
<Colors>
<Update>
<!-- This is the darker of Assyria's two colors, the orangish one -->
<Where Type="COLOR_PLAYER_ASSYRIA_ICON"/>
<Set Red="0.000" Green="0.000" Blue="0.000"/>
</Update>
<Update>
<!-- Assyria's creme-ish color -->
<Where Type="COLOR_PLAYER_ASSYRIA_BACKGROUND"/>
<Set Red="1.000" Green="1.000" Blue="1.000"/>
</Update>
</Colors>
</GameData>
This is a template; the way I've defined it here corresponds to a black symbol on a white background.
This also assumes you're making a mod to do this (set it to Affects Saved Games = 0, BTW), this won't work if you just want to edit a file.
Set your own colors by modifying the values after Red, Green, Blue, and Alpha (to another number between 0 and 1). Currently both the background and border are set to solid black with the code above, which is probably not what you want, so change the colors yourself.
Somewhere on the steam workshop there's a mod called Ethiopia Color Fix (or something very similar) that only adjusted the colors of the civ and its units to make them a little more distinctive from barbarians. You could take a look at that mod for a sample of an operating mod that does what you're after, so far as the format of the commands you need.
Don't change your ingame files. Overwriting the regular files can make your game not play well with other mods, make online break, and it's a big hassle to fix if you break your game accidentally. Just make a mod that replaces those files each time you load it.
Literally all you need to do is open a notepad file, copy-paste one of the codes we gave you and change the colors to what you like, and then open that mod file in ModBuddy and build it.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.