What are all of the different PLAYERCOLOR 's?

clanky4

Emperor
Joined
Jul 11, 2012
Messages
1,262
Location
USA
I was recently adding in a few new teams which shared their Playercolor with an already existing civilization, japan. When I tried to play a game with both the new civilization and japan the new civilization's Playercolor was PLAYERCOLOR_RED but japan's Playercolor was PLAYERCOLOR_DARK_INDIGO_AND_WHITE. I searched through CIV4CivilizationInfos.xml and no other civilization had that color.

So I was wondering if anyone knew what all of the available player colors were. I want to add a new civilization but not mess up another an existing civilization's color scheme if possible :lol:

Sorry if this has been asked before, and thanks for any help.
 
Look for the file CIV4PlayerColorInfos.xml in the XML/Interface folder.
 
You can also create your own Player Colours in XML\Interface\CIV4ColorVals.xml
Code:
		<ColorVal>
			<Type>COLOR_PLAYER_MAROON</Type>
			<fRed>0.55</fRed>
			<fGreen>0.00</fGreen>
			<fBlue>0.00</fBlue>
			<fAlpha>1.00</fAlpha>
		</ColorVal>
 
Back
Top Bottom