ten błąd naprawione ale nie wyświetlają się dialogi opicia jest ale niema dialogów
//*********************************************************************
// Info EXIT
//*********************************************************************
INSTANCE DIA_Merinors_EXIT (C_INFO)
{
npc = SLD_9001_Merinors;
nr = 999;
condition = DIA_SLD_9001_Merinors_EXIT_Condition;
information = DIA_SLD_9001_Merinors_EXIT_Info;
permanent = TRUE;
description = DIALOG_ENDE;
};
FUNC INT DIA_SLD_9001_Merinors_EXIT_Condition()
{
return TRUE;
};
FUNC VOID DIA_SLD_9001_Merinors_EXIT_Info()
{
AI_StopProcessInfos (self);
};
//*********************************************************************
// Ktoty
//*********************************************************************
INSTANCE DIA_Merinors_Ktoty (C_INFO)
{
npc = SLD_9001_Merinors;
nr = 1;
condition = DIA_Merinors_Ktoty_Condition;
information = DIA_Merinors_Ktoty_Info;
permanent = FALSE;
description = "Kto ty?";
};
FUNC INT DIA_Merinors_Ktoty_Condition()
{
return TRUE;
};
FUNC VOID DIA_Merinors_Ktoty_Info()
{
AI_Output (other,self ,"DIA_Merinors_Ktoty_15_00"); //Kto ty?
AI_Output (self ,other,"DIA_Merinors_Ktoty_01_01"); //Ja nazywam się Merinors.
AI_Output (self ,other,"DIA_Merinors_Ktoty_01_02"); //Jestem Strażnikiem Wiary.
AI_Output (self ,other,"DIA_Merinors_Ktoty_01_03"); //Zabijam zło i nauczam o Bogach
};
//*********************************************************************
// Nauka
//*********************************************************************
INSTANCE DIA_Merinors_Nauka (C_INFO)
{
npc = SLD_9001_Merinors;
nr = 1;
condition = DIA_Merinors_Nauka_Condition;
information = DIA_Merinors_Nauka_Info;
permanent = FALSE;
description = "Jak to nauczasz?";
};
FUNC INT DIA_Merinors_Nauka_Condition()
{
if (Npc_KnowsInfo (other,DIA_Merinors_Ktoty))
{
return TRUE;
};
};
FUNC VOID DIA_Merinors_Nauka_Info()
{
AI_Output (other,self ,"DIA_Merinors_Nauka_15_00"); //Jak to nauczasz?
AI_Output (self ,other,"DIA_Merinors_Nauka_01_01"); //podróżuje po miescie i u najemników.
AI_Output (other,self ,"DIA_Merinors_Nauka_01_02"); //Dziwi mnie to że najemnicy cie słuchają.
AI_Output (self ,other,"DIA_Merinors_Nauka_01_03"); //sam byłem najemnikiem dlatego mnie słuchają.
};