• 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 many bugs in side quests

Commando1986

Landlubber
Hello every body :
I really need your help & support in Sea Dogs 2 Pirates of the Caribbean 2003 I'm sure this game is full of bugs in quests & I think the problem in
Baldewyn Coffier & Arnaud Matton because I can't see him in Tavern & The French pirate in the tavern also the same problem I can't see Claire Larrouse in Tavern too & also Cargo for Thomas O'Reily I have free space & France is not enemy to me but I can't take this quest . plz some one help :(
ah & one more thing I have depp character looks like Jack sparrow but when I play with him my pic look black is that mean I need some files in 64 & 256 folders or what ? :confused:
I'm sure you will help me & my Problem will soon be fixed :)
 
Hello every body :
I really need your help & support in Sea Dogs 2 Pirates of the Caribbean 2003 I'm sure this game is full of bugs in quests & I think the problem in Baldewyn Coffier & Arnaud Matton because I can't see him in Tavern & The French pirate in the tavern also the same problem I can't see Claire Larrouse in Tavern too & also Cargo for Thomas O'Reily I have free space & France is not enemy to me but I can't take this quest . plz some one help :(
ah & one more thing I have depp character looks like Jack sparrow but when I play with him my pic look black is that mean I need some files in 64 & 256 folders or what ? :confused:
I'm sure you will help me & my Problem will soon be fixed :)

Those quests aren't in the unmodded game, as for the character, I can't say anything.
 
ah now I understand thank you really for replay & help :)
but ... what about Jack Sparrow as you can see there is no PORTRAITS PIC he appear black pic or as any other character as you can see here I got Print Screen so he has no pic too or what ?!
Jack Sparrow.jpg
:confused:
 
It appears you installed it into "program files" which is always a bad thing. Did you read all of the instructions on MODDB including the "read more" part?
 
AT LAST I FIXED ALL MY GAME PROBLEMS :D
I Fixed all game bugs & now I can play sea dogs 2 the original 2003 game with all side missions you know the problems was in the dialogs & quests cheats I edited them well & Tried it now it work 100% without any mods :)
I thank you all for your help & I'm happy with you :ahoy
 
PROGRAM\Dialog_func.c for the smugglers:
Code:
void PlaceSmugglersOnShore(string LocationId)
{
   ref Smuggler, player;
   int RandCounter;

   player = GetMainCharacter();

   string Models[20];
   Models[0] = "man1";
   Models[1] = "man1_1";
   Models[2] = "man1_2";
   Models[3] = "old_man1";
   Models[4] = "old_man2";
   Models[5] = "sailor1";
   Models[6] = "sailor2";
   Models[7] = "sailor3";
   Models[8] = "sailor4";
   Models[9] = "chelovek";
   Models[10] = "chelovek1";
   Models[11] = "man5_1";
   Models[12] = "bocman3";
   Models[13] = "bocman4";
   Models[14] = "sailor5";
   Models[15] = "Corsair1_2";
   Models[16] = "korsar";
   Models[17] = "Korsar1";
   Models[18] = "Black_Corsair";
   Models[19] = "Sailor6";

   //Trace("Ïåðåìåùàþ ïåðñîíàæåé â ëîêàöèþ " + LocationID);

   Smuggler = CharacterFromId("Rand_Smug01");
   LAi_SetCurHPMax(CharacterFromId("Rand_Smug01"));
   Smuggler.model = Models[Rand(19)];
   Smuggler.Headmodel = "h_" + smuggler.model;
   Facemaker(Smuggler);

Regular merchants are in PROGRAM\Characters\init\StoreOwners.c and StreetMerchants.c .
 
PROGRAM\QUESTS\quests_common.c:
Code:
    case "prepare_for_convoy_quest":
       // PB: Bit more variety -->
       SetModelfromArray(characterFromID("Quest trader"), GetModelIndex(GetRandomModelForTypeExSubCheck(-1, "Upper_Citizens", "man", GetCurrentLocationNation())));
       // PB: Bit more variety <--
This means that these traders use a random model from the "Upper Citizens" group as defined in PROGRAM\Models\initModels.c .
It also takes into account the location nation, so you won't get Spanish-looking traders in a Dutch town.
 
Back
Top