[BNW] Change Brazil color civ

GeonTavares

Chieftain
Joined
Apr 22, 2017
Messages
2
Greetins from Brazil.

I need a help here.

. I'm trying to change the color of Brazil, but I can not find the color xml file in the DLC BNW folder. How can I proceed to change the color? By the way, I already have a game in progress. I read somewhere that I can change the color through the load file, is this true?
 
This is in: C:\Program Files (x86)\Steam\steamapps\common\Sid Meier's Civilization V\Assets\DLC\Expansion2\Gameplay\XML\Civilizations\CIV5Civilizations_Expansion2.xml
Special thanks to Agent Ransack (a search tool)
Code:
<Colors>
        [..]snipped[..]
        <Row>
            <Type>COLOR_PLAYER_BRAZIL_ICON</Type>
            <Red>0.1647058823529412</Red>
            <Green>0.3294117647058824</Green>
            <Blue>0.1764705882352941</Blue>
            <Alpha>1</Alpha>
        </Row>
        <Row>
            <Type>COLOR_PLAYER_BRAZIL_BACKGROUND</Type>
            <Red>0.5882352941176471</Red>
            <Green>0.8705882352941176</Green>
            <Blue>0.0392156862745098</Blue>
            <Alpha>1</Alpha>
        </Row>
         [..]snipped[..]
</Colors>

Sadly enough I don't know anything about savefiles, so I can't help you there.
 
Thanks, man. I found the file

Just one more information. This RGBA format is different of a common 0-255 format.

How do I make the color with this default of "0.5882352941176471".
 
You divide the normal RGB-value by 255.
So bright red (R: 255; G: 0; B: 0) becomes (255/255,0/255,0/255) = (1,0,0)
 
Top Bottom