SneoplesGov
Chieftain
- Joined
- Apr 25, 2016
- Messages
- 11
Alright, say I wanted to create a new player color for a civilization -- let's go with Argentina.
First I would go into CIV4PlayerColorInfos.xml and created a new Player Color, like so:
Alright, so now (I assume) I would have to create new values for those colors I just created. So, I go into CIV4ColorVals.xml and create a new Color Value.
What I'm wondering is: What numbers would I need to enter to get the color I want? Is there a particular color model I need to follow? Is any of this possible at all?
Any help is appreciated, thank you.
First I would go into CIV4PlayerColorInfos.xml and created a new Player Color, like so:
Spoiler :
<PlayerColorInfo>
<Type>PLAYERCOLOR_ARGENTINA</Type>
<ColorTypePrimary>COLOR_PLAYER_ARGENTINA1</ColorTypePrimary>
<ColorTypeSecondary>COLOR_PLAYER_ARGENTINA2</ColorTypeSecondary>
<TextColorType>COLOR_PLAYER_ARGENTINA_TEXT</TextColorType>
</PlayerColorInfo>
<Type>PLAYERCOLOR_ARGENTINA</Type>
<ColorTypePrimary>COLOR_PLAYER_ARGENTINA1</ColorTypePrimary>
<ColorTypeSecondary>COLOR_PLAYER_ARGENTINA2</ColorTypeSecondary>
<TextColorType>COLOR_PLAYER_ARGENTINA_TEXT</TextColorType>
</PlayerColorInfo>
Alright, so now (I assume) I would have to create new values for those colors I just created. So, I go into CIV4ColorVals.xml and create a new Color Value.
Spoiler :
<ColorVal>
<Type>COLOR_PLAYER_ARGENTINA1</Type>
<fRed>0.13</fRed>
<fGreen>0.13</fGreen>
<fBlue>0.13</fBlue>
<fAlpha>1.00</fAlpha>
</ColorVal>
<Type>COLOR_PLAYER_ARGENTINA1</Type>
<fRed>0.13</fRed>
<fGreen>0.13</fGreen>
<fBlue>0.13</fBlue>
<fAlpha>1.00</fAlpha>
</ColorVal>
What I'm wondering is: What numbers would I need to enter to get the color I want? Is there a particular color model I need to follow? Is any of this possible at all?
Any help is appreciated, thank you.