This problem remains; WHY, WHY, WHY???? <img src="style_emoticons/<#EMO_DIR#>/piratesing.gif" style="vertical-align:middle" emoid="
" border="0" alt="piratesing.gif" />
<!--quoteo(post=332665:date=Jun 25 2009, 04:41 PM:name=Pieter Boelen)--><div class='quotetop'>QUOTE (Pieter Boelen @ Jun 25 2009, 04:41 PM) <a href="index.php?act=findpost&pid=332665"><{POST_SNAPBACK}></a></div><div class='quotemain'><!--quotec-->I'm trying to put flags on the "important" ships in the game and now I got to the Fast Caravel, eg. Bartolomeu's Santiago
I enlarged the ensign on mast3 since I thought that'd look better. Note, however, the ensign on mast5 too:
<img src="http://piratesahoy.net/build/temp/Santiago.jpg" border="0" class="linked-image" />
I'd much rather have a pennant there, but if I use the following code, mast5 will simply have no flag at all:<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1--> refShip.Flags.Mast2.Flag1 = FLAG_PENNANT;
refShip.Flags.Mast3.Flag1 = FLAG_ENSIGN;
refShip.Flags.Mast4.Flag1 = FLAG_PENNANT;
refShip.Flags.Mast5.Flag1 = FLAG_PENNANT;<!--c2--></div><!--ec2-->
The following does work fine:<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1--> refShip.Flags.Mast2.Flag1 = FLAG_PENNANT;
refShip.Flags.Mast3.Flag1 = FLAG_ENSIGN;
refShip.Flags.Mast4.Flag1 = FLAG_PENNANT;
refShip.Flags.Mast5.Flag1 = FLAG_ENSIGN;<!--c2--></div><!--ec2-->
I have attached my model files; hopefully somebody will be able to tell me what's wrong here. <img src="style_emoticons/<#EMO_DIR#>/wacko.gif" style="vertical-align:middle" emoid=":wacko:" border="0" alt="wacko.gif" />
BTW: Please let me know if you think the ensign on mast3 should be larger still. I'm not quite sure... <img src="style_emoticons/<#EMO_DIR#>/unsure.gif" style="vertical-align:middle" emoid=":?" border="0" alt="unsure.gif" /><!--QuoteEnd--></div><!--QuoteEEnd-->