gothic-1-community-patch
gothic-1-community-patch copied to clipboard
Scorpio has obsolete dialog option about joining to Old Camp
Scorpio has obsolete dialog option about joining to Old Camp. This dialog should be only destinated for hero before joining to any camp. How to reproduce? Joining to Swamp Camp or New Camp and ask to Scorpio.
Again there is one condition missing reffering to guild NONE.
The fix should be like below: `if (Npc_KnowsInfo(hero, Info_Thorus_ReadyForGomez))
&& ( Npc_GetTrueGuild (hero)== GIL_NONE )//only if we dont join to any camp { Info_Addchoice (DIA_Scorpio_Hello,"Idę zobaczyć się z Gomezem. Zamierzam do was dołączyć.",DIA_Scorpio_Hello_Join);`
https://github.com/AmProsius/gothic-1-community-patch/blob/39e050914ae56e2cc0d6c63a3f3bb204dfa34372/scriptbase/_work/Data/Scripts/Content/Story/Missions/DIA_GRD_205_Scorpio.d#L61-L64
changed to
if (Npc_KnowsInfo(hero, Info_Thorus_ReadyForGomez))
&& (Npc_GetTrueGuild(hero) == GIL_NONE)
{
Info_Addchoice (DIA_Scorpio_Hello,"I'm on my way to see Gomez. I'm going to join up with you.",DIA_Scorpio_Hello_Join);
};
Similar to #17/#65.