Making a sponser mod(color and .dds)

Karnil

Chieftain
Joined
Nov 4, 2014
Messages
4
Hey I am pretty new at modding Civ games. (did a few fixs for pandura)

I used one of WakeUpMrBubbles sponsor mods as templates, to better understand.

But I seems to have run into a few problems?
first of my faction ingame are suppose to be purple and blue, but are yellow and white?
Spoiler :
<GameData>
<Colors>
<Row>
<Type>COLOR_PLAYER_NLR_PRIMARY</Type>
<Red>64</Red>
<Green>70</Green>
<Blue>128</Blue>
<Alpha>1</Alpha>
</Row>
<Row>
<Type>COLOR_PLAYER_NLR_SECONDARY</Type>
<Red>47</Red>
<Green>85</Green>
<Blue>195</Blue>
<Alpha>1</Alpha>
</Row>
</Colors>
</GameData>

And the .dds files fails to load in the game? so I get a lot of box's to click on :lol:
But then I look through the code there doesn't seems to be a problem.
the error is called: texture load error, and says: unable to load texture[nameOfFile]

I could really use some help as I am clueless right now :3
 
OK, you've added the colors, but have you set your faction to actually use them?
EDIT: You need to divide your RGB values by 255, so that the numbers are between 0 and 1.

As for your .dds files, I suspect you didn't set them VFS=true.
 
OK, you've added the colors, but have you set your faction to actually use them?
EDIT: You need to divide your RGB values by 255, so that the numbers are between 0 and 1.

As for your .dds files, I suspect you didn't set them VFS=true.

Well that fixed all of the problems I had so far, should have seen the RGB thing.
But the .dds went completely under my radar.

Thank you for your help
 
Back
Top Bottom