<!--quoteo(post=139318:date=Feb 11 2006, 11:49 AM:name=giuliootto)--><div class='quotetop'>QUOTE(giuliootto @ Feb 11 2006, 11:49 AM) [snapback]139318[/snapback]</div><div class='quotemain'><!--quotec--><!--quoteo(post=139308:date=Feb 11 2006, 07:39 AM:name=Captain Hawk)--><div class='quotetop'>QUOTE(Captain Hawk @ Feb 11 2006, 07:39 AM) [snapback]139308[/snapback]</div><div class='quotemain'><!--quotec-->
<!--quoteo(post=139189:date=Feb 10 2006, 01:36 AM:name=giuliootto)--><div class='quotetop'>QUOTE(giuliootto @ Feb 10 2006, 01:36 AM) [snapback]139189[/snapback]</div><div class='quotemain'><!--quotec-->
About this point:
"Something should be missed in this new update, the relation interface has lost some texture."
I found the bug in file;
C:\giochi\Pirates of the Caribbean\PROGRAM\INTERFACE\NationRelation.c
Line 241 where there are too much ")".
Wrong Line;
if (PCharNation != NATHANIEL_NATION) && (bRecognized == false)) {
Right Line;
if (PCharNation != NATHANIEL_NATION && bRecognized == false) {
Bye,bye,
giuliootto<!--QuoteEnd--></div><!--QuoteEEnd-->
Hi giuliootto <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/hi.gif" style="vertical-align:middle" emoid=":gday" border="0" alt="hi.gif" />
It is NOT too much ")" it is missing "(". <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/modding.gif" style="vertical-align:middle" emoid="
" border="0" alt="modding.gif" />
Right Line;
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->if ((PCharNation != NATHANIEL_NATION) && (bRecognized == false)) {<!--c2--></div><!--ec2-->
This MUST help I hope CapHawk <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/icon_mrgreen1.gif" style="vertical-align:middle" emoid="
" border="0" alt="icon_mrgreen1.gif" /> Like this <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/type_1.gif" style="vertical-align:middle" emoid=":nk" border="0" alt="type_1.gif" /> and NOT like <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/modding.gif" style="vertical-align:middle" emoid="
" border="0" alt="modding.gif" />
<!--QuoteEnd--></div><!--QuoteEEnd-->
<img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/hi.gif" style="vertical-align:middle" emoid=":gday" border="0" alt="hi.gif" /> Captain Hawk,
For the less I know of C++ the two line:
if (PCharNation != NATHANIEL_NATION && bRecognized == false) {
or
if ((PCharNation != NATHANIEL_NATION) && (bRecognized == false)) {
should be each right <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/rolleyes.gif" style="vertical-align:middle" emoid="
" border="0" alt="rolleyes.gif" />
To Screwface, thanks for your fix <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/par-ty.gif" style="vertical-align:middle" emoid="
" border="0" alt="par-ty.gif" />
Bye, bye,
giuliootto
<!--QuoteEnd--></div><!--QuoteEEnd-->
Hi giuliootto
I know even less c++ but in GAME if you use double "((". nation relation works from start.
If you use single "(" then you have to first use your personal flag or other flag to make it work. <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/icon_mrgreen1.gif" style="vertical-align:middle" emoid="
" border="0" alt="icon_mrgreen1.gif" />
AT LEAST IT IS THIS WAY IN MY GAME. <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/danse1.gif" style="vertical-align:middle" emoid="
" border="0" alt="danse1.gif" />
Bye CapHawk <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/par-ty.gif" style="vertical-align:middle" emoid="
" border="0" alt="par-ty.gif" /> <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/par-ty.gif" style="vertical-align:middle" emoid="
" border="0" alt="par-ty.gif" /> Make it work like <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/type_1.gif" style="vertical-align:middle" emoid=":nk" border="0" alt="type_1.gif" /> and NOT like <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/modding.gif" style="vertical-align:middle" emoid="
" border="0" alt="modding.gif" />
EDIT : in Pieters latest Pirate KK has fixed it like:
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->if (PCharNation != NATHANIEL_NATION && bRecognized == false)<!--c2--></div><!--ec2-->
The best way I hope . Less is good .More is bad?? <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/dunno.gif" style="vertical-align:middle" emoid="
" border="0" alt="dunno.gif" />