• New Horizons on Maelstrom
    Maelstrom New Horizons


    Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!

Fixed Jurcksen's dialogues

Dextr

Sailor
"Unknown", "Business..."
 

Attachments

  • seadogs2_0014.jpg
    seadogs2_0014.jpg
    742.2 KB · Views: 71
  • seadogs2_0015.jpg
    seadogs2_0015.jpg
    727.8 KB · Views: 68
The game was never set up to have you serve the pirates the same way as any other nation.
The "pirate ranks" are supposed to be accomplished separately from the nation ones.
Instead, these are used to measure your "fame" level. The game gets confused when the two get used interchangeably.

There is indeed also a slight coding error in PROGRAM\Periods.c . This:
Code:
  period.Royal.Pirate.Name = "Isaac Rochussen";
   period.Royal.Pirate.Name = XI_ConvertString("The chief");
Should be replaced with this:
Code:
  period.Royal.Pirate.Name = "Isaac Rochussen";
   period.Royal.Pirate.Title = XI_ConvertString("The chief");
That should make some more sense of that second issue you mention.
 
So is al fixed now?
 
The "Business Promising Pirate" thing would still happen. I don't think there is any easy way of solving that, since the pirates were never meant to have ranks.
 
But the unkown the chief is fixed now?
Then I think for now this is fixed.
 
Just accidentally ran into another instance of this:
Code:
period.Royal.Pirate.Name = XI_ConvertString("The chief");
Will be correct to this for the next update:
Code:
period.Royal.Pirate.Title = XI_ConvertString("The chief");
 
Back
Top