<!--quoteo(post=157748:date=Aug 12 2006, 01:29 PM:name=Pieter Boelen)--><div class='quotetop'>QUOTE(Pieter Boelen @ Aug 12 2006, 01:29 PM) [snapback]157748[/snapback]</div><div class='quotemain'><!--quotec-->
Have you modified the numbers in BuildSettings.h?
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->#define QTY_LOGOSAILS_WHOLE_WHITE 16 // type=int, desc="increase this when you add new whole white sails."
#define QTY_LOGOSAILS_TORN_WHITE 15 // type=int, desc="increase this when you add new torn white sails. the files should be named sails_torn_white_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_WHOLE_RED 16 // type=int, desc="increase this when you add new whole red sails. the files should be named sails_whole_red_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_TORN_RED 15 // type=int, desc="increase this when you add new torn red sails. the files should be named sails_torn_red_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_WHOLE_BLACK 16 // type=int, desc="increase this when you add new whole black sails. the files should be named sails_whole_black_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_TORN_BLACK 16 // type=int, desc="increase this when you add new torn black sails. the files should be named sails_torn_black_pirate0.tga.tx etc."<!--c2--></div><!--ec2-->
If it still doesn't work properly, maybce something is wrong with PROGRAM\INTERFACE\kam_selectsails.c?
<!--QuoteEnd--></div><!--QuoteEEnd-->
Yep, I changed the numbers in the BuildSettings.h
This is how my settings look like.
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->#define QTY_LOGOSAILS_WHOLE_WHITE 18 // type=int, desc="increase this when you add new whole white sails."
// the files should be named sails_whole_white_pirate0.tga.tx, sails_whole_white_pirate1.tga.tx, sails_whole_white_pirate2.tga.tx, etc.
// so if the value above is set, for example, to 15, then the file numbers should be 0 - 14
// they should be put in RESOURCE\Textures\Ships\
#define QTY_LOGOSAILS_TORN_WHITE 15 // type=int, desc="increase this when you add new torn white sails. the files should be named sails_torn_white_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_WHOLE_RED 18 // type=int, desc="increase this when you add new whole red sails. the files should be named sails_whole_red_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_TORN_RED 15 // type=int, desc="increase this when you add new torn red sails. the files should be named sails_torn_red_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_WHOLE_BLACK 18 // type=int, desc="increase this when you add new whole black sails. the files should be named sails_whole_black_pirate0.tga.tx etc."
#define QTY_LOGOSAILS_TORN_BLACK 16 // type=int, desc="increase this when you add new torn black sails. the files should be named sails_torn_black_pirate0.tga.tx etc."<!--c2--></div><!--ec2-->
The sugesstion with the kam_selectsails.c seems to be right. I found something (red marked) that could be the solution.
But I didn't know anything about coding so I don't know if I could delete or change this part or if there was something else I have pay attention to.
<i>// KK default:
switch(SailsDesign)
{
case SAILSDESIGN_PA:
ListMax = 2;
// FileStr[2] = ListNum;
break;
case SAILSDESIGN_PIRATE:
ListMax = 18;
switch(SailsType)
{
case SAILSTYPE_NOTTORN:
switch(SailsColour)
{
//case SAILSCOLOUR_WHITE: ListMax = QTY_LOGOSAILS_WHOLE_WHITE; break;
case SAILSCOLOUR_RED: <!--coloro:#FF0000--><span style="color:#FF0000"><!--/coloro-->ListMax = 17;<!--colorc--></span><!--/colorc--> break;
//case SAILSCOLOUR_BLACK: ListMax = QTY_LOGOSAILS_WHOLE_BLACK; break;
}
break;</i>