gothic-1-community-patch icon indicating copy to clipboard operation
gothic-1-community-patch copied to clipboard

Isidro: Necessary dialog disappearing

Open teo753 opened this issue 1 year ago • 2 comments

Describe the bug When not able to complete Isidro's weed selling quest the first time due to lack of ore, the necessary dialog option does not show up ever again.

Expected behavior The player should still be able to complete the quest later.

Steps to reproduce the issue

  1. Talk to Baal Isidro in the tavern and agree to sell his weed.
  2. Talk to him again with less than 200 ore in inventory.
  3. Tell him you sold the weed. The player will automatically say that he has less than 200 ore and Isidro will ask him to get it. After this, the dialog option is gone forever and the quest remains unsolved.

Additional context Ought to be a quick fix, actually very similar to one that was fixed in the very same room: Silas only trading with the player once.

teo753 avatar Nov 11 '23 17:11 teo753

Thanks for sharing! We will investigate this further.

AmProsius avatar Nov 15 '23 19:11 AmProsius

Similar to #30.

Proposed fix:

https://github.com/AmProsius/gothic-1-community-patch/blob/aff7368e025c5fc1b6e02d574da5e0e9a83e2aaa/scriptbase/_work/Data/Scripts/Content/Story/Missions/DIA_NOV_1333_BaalIsidro.d#L292-L300

changed to

INSTANCE DIA_BaalIsidro_RUNNING(C_INFO)
{
    npc         = Nov_1333_BaalIsidro;
    nr          = 1;
    condition   = DIA_BaalIsidro_RUNNING_Condition;
    information = DIA_BaalIsidro_RUNNING_Info;
    permanent   = 1;
    description = "I've sold the weed. Here's your 200 ore.";
};

AmProsius avatar Feb 19 '24 12:02 AmProsius