Bardzo cie przepraszam pisałem z pamięci powinno być.
Wld_SendTigger("nazwabramy");
Dziwne, bo napisałem teraz Wld_SendTigger("BRAMA"); (Brama to jest nazwa mojej bramy xD)
I dalej wyskakuje ten sam błąd
Oto skrypt:
INSTANCE DIA_NONE_50000_Pustelnik_posterunek (C_INFO)
{
npc = NONE_50000_Pustelnik;
nr = 5;
condition = DIA_NONE_50000_Pustelnik_posterunek_Condition;
information = DIA_NONE_50000_Pustelnik_posterunek_Info;
important = TRUE;
permanent = false;
};
FUNC INT DIA_NONE_50000_Pustelnik_posterunek_Condition()
{ if Hlp_StrCmp (Npc_GetNearestWP(self), "DROGA_04")
{
return TRUE;
};
};
FUNC VOID DIA_NONE_50000_Pustelnik_posterunek_Info()
{
AI_Output (self, other, "DIA_NONE_50000_Pustelnik_posterunek_15_00");//Dobra jesteśmy, możesz teraz wejść!
AI_Output (self, other, "DIA_NONE_50000_Pustelnik_posterunek_07_01");//Rycerze mnie znają, zaraz otworzą bramę!
Wld_SendTigger("BRAMA");
AI_Output (self, other, "DIA_NONE_50000_Pustelnik_posterunek_07_02");//Ja wracam do mojej jaskini, do zobaczenia!
Npc_ExchangeRoutine (self, "Start");
B_GivePlayerXP (100);
AI_StopProcessInfos(self);
};