Więc tak : Gdy zagaduje do kolesia wybieram opcje dialogową to nie pokazuje się to okienko na górze z treścią rozmowy. Co jest nie tak ???
Skrypt dialogu :
//========================================
//-----------------> OPCJA *KONIEC*
//========================================
INSTANCE DIA_Phantom_EXIT(C_INFO)
{
npc = PAL_888_Phantom;
nr = 999;
condition = DIA_Phantom_EXIT_Condition;
information = DIA_Phantom_EXIT_Info;
permanent = TRUE;
description = "KONIEC";
};
FUNC INT DIA_Phantom_EXIT_Condition()
{
return TRUE;
};
FUNC VOID DIA_Phantom_EXIT_Info()
{
AI_StopProcessInfos (self);
};
//========================================
//-----------------> HELLO1
//========================================
INSTANCE DIA_Phantom_HELLO1 (C_INFO)
{
npc = PAL_888_Phantom;
nr = 1;
condition = DIA_Phantom_HELLO1_Condition;
information = DIA_Phantom_HELLO1_Info;
permanent = TRUE;
description = "Cześć";
};
FUNC INT DIA_Phantom_HELLO1_Condition()
{
return TRUE;
};
FUNC VOID DIA_Phantom_HELLO1_Info()
{
AI_Output (other, self ,"DIA_Phantom_HELLO1_15_01"); //Cześć
AI_Output (self, other ,"DIA_Phantom_HELLO1_03_02"); //Cześć nie mam teraz czasu.
};