It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
this is kinda irrelevant to me now since I finished the game already, but I came back from the Valley of Mines, prompting chapter 5. I went to Neoras and spoke with him about the potion he is working on for the first time and gave him the egg right away. Then nothing happened for couple days, the only dialogue options available were potion teaching and brewing. Since I had nothing to do anymore, I just departed for Irdorath. But I got my hands on the berserker axe anyway so no harm done.

Somewhere I read you have to give the egg to Neoras in chapter 4 and come back for the potion in chapter 5. Can someone confirm this? It sounds very counter-intuitive to me, because it means I should not defeat the ice dragon the last, take the egg, deliver it and the return back to the valley to finish the dragon hunt.
avatar
Yesusfist: this is kinda irrelevant to me now since I finished the game already, but I came back from the Valley of Mines, prompting chapter 5. I went to Neoras and spoke with him about the potion he is working on for the first time and gave him the egg right away. Then nothing happened for couple days, the only dialogue options available were potion teaching and brewing. Since I had nothing to do anymore, I just departed for Irdorath. But I got my hands on the berserker axe anyway so no harm done.

Somewhere I read you have to give the egg to Neoras in chapter 4 and come back for the potion in chapter 5. Can someone confirm this? It sounds very counter-intuitive to me, because it means I should not defeat the ice dragon the last, take the egg, deliver it and the return back to the valley to finish the dragon hunt.
I gave it to him in Ch. 4, mainly because I also needed to "refuel" my supplies as well. I actually left the dragon hunt several times to return during Ch. 4. Start of Ch. 5 the potion is ready. Hope that helps.
According to the game scripts, in order to ask about what Neoras is doing, you have to be in Ch. 4+ and a paladin/mage (even though militia is stated as well, it's not really an option, since you need to be a paladin in order to get the Eye of Innos repaired).
The only conditions of enabling the "ask for potion" dialogue after are choosing the correct reward (not "Surprise me" or healing potions) and waiting for at least two days.

instance DIA_Neoras_DRACHENEIER(C_Info)
{
npc = KDF_506_Neoras;
nr = 40;
condition = DIA_Neoras_DRACHENEIER_Condition;
information = DIA_Neoras_DRACHENEIER_Info;
permanent = TRUE;
description = "You seem to have worked up a sweat.";
};

func int DIA_Neoras_DRACHENEIER_Condition()
{
if((Kapitel >= 4) && ((hero.guild == GIL_MIL) || (hero.guild == GIL_PAL) || (hero.guild == GIL_KDF)) && (MIS_Neoras_DragonEgg == 0))
{
return TRUE;
};
};
...
...
...

func void DIA_Neoras_FOUNDDRAGONEGG_trank()
{
AI_Output(other,self,"DIA_Neoras_FOUNDDRAGONEGG_trank_15_00"); //Give me some of the potion when it's ready.
AI_Output(self,other,"DIA_Neoras_FOUNDDRAGONEGG_trank_01_01"); //All right. But as I said, I have no idea what will come from it.
AI_Output(self,other,"DIA_Neoras_FOUNDDRAGONEGG_trank_01_02"); //Come back later when I have finished it.
Neoras_DragonEggDrink_Day = Wld_GetDay();
Neoras_SCWantsDragonEggDrink = TRUE;

Info_ClearChoices(DIA_Neoras_FOUNDDRAGONEGG);
};
...
...
...

instance DIA_Neoras_DRAGONEGGDRINK(C_Info)
{
npc = KDF_506_Neoras;
nr = 3;
condition = DIA_Neoras_DRAGONEGGDRINK_Condition;
information = DIA_Neoras_DRAGONEGGDRINK_Info;
description = "I've come to get that ominous dragon egg potion.";
};

func int DIA_Neoras_DRAGONEGGDRINK_Condition()
{
if((Neoras_DragonEggDrink_Day <= (Wld_GetDay() - 2)) && (Neoras_SCWantsDragonEggDrink == TRUE))
{
return TRUE;
};
};
Post edited June 22, 2017 by helpo1