At Kralendijk on Bonaire when you start the quest.
The English Bark you have has a full cargo hold with 524 Ale
But Baltasar Salgada on cuba wants 600 ale minimum.
So when you arrive on Cuba - talk to Baltasar Salgada - say you don't have enough ale - he refuses to deal with you and runs away - quest book closed - quest over.
:
At least I did not get killed.
From Baltasar Salgada_dialog.c
I think this is a problem from when some of the ship's were altered a while back.
The English Bark you have has a full cargo hold with 524 Ale
But Baltasar Salgada on cuba wants 600 ale minimum.
So when you arrive on Cuba - talk to Baltasar Salgada - say you don't have enough ale - he refuses to deal with you and runs away - quest book closed - quest over.

At least I did not get killed.

From Baltasar Salgada_dialog.c
Code:
case "begin_1":
if(GetSquadronGoods(pchar,GOOD_ALE)>=600)
{
dialog.snd = "Voice\CLLA\CLLA004";
dialog.text = DLG_TEXT[2];
link.l1 = DLG_TEXT[3];
link.l1.go = "exit";
AddDialogExitQuest("loadale");
}
else
{
dialog.snd = "Voice\CLLA\CLLA002";
dialog.text = DLG_TEXT[2];
link.l1 = DLG_TEXT[14];
link.l1.go = "begin_7";
}
break;
I think this is a problem from when some of the ship's were altered a while back.