• 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 Jack Sparrow Storyline: Stuck on Deck with Davy Jones

Yo ho ho!

Powder Monkey
Excuse me again, but it is normal that remains stuck here (look attached) for approximately more than 50 seconds?
 

Attachments

  • gfd.jpg
    gfd.jpg
    293 KB · Views: 158
@Yo ho ho!, looks like you found another actual bug.

In PROGRAM\Storyline\JackSparrow\quests\quests_reaction.c find:
Code:
    case "voirdavy":
       //ChangeCharacterAddressGroup(CharacterFromID("Davycrew_01"), PChar.location, "rld", "loc0");
       SetCharacterToNearLocatorFromMe("Davy Jones", 3);
       //SetCharacterToNearLocatorFromMe("Davycrew_01", 10);
Replace with:
Code:
    case "voirdavy":
       //ChangeCharacterAddressGroup(CharacterFromID("Davycrew_01"), PChar.location, "rld", "loc0");
       SetCharacterToNearLocatorFromMe("Davy Jones", 3);
       //SetCharacterToNearLocatorFromMe("Davycrew_01", 10);
       Characters[GetCharacterIndex("Davy Jones")].dialog.currentnode = "First time"; // PB
So add the line marked "PB".

Alternatively, extract attached file to your PROGRAM\Storyline\JackSparrow\quests folder.

Now load a savegame just prior to that point, then try again.
You should get the correct dialog now.
 

Attachments

  • quests_reaction.c
    400 KB · Views: 117
Back
Top