O temacie
Autor
Zaczęty 28.08.2012 roku
Wyświetleń 2015
Odpowiedzi 3
gothic1210 Gość
//========================================//-----------------> GoodGuildTest//========================================INSTANCE DIA_Bula_GoodGuildTest (C_INFO){ npc = non_2233_Bula; nr = 1; condition = DIA_Bula_GoodGuildTest_Condition; information = DIA_Bula_GoodGuildTest_Info; permanent = FALSE; description = "Mam odpowiednią gildię!";};FUNC INT DIA_Bula_GoodGuildTest_Condition(){ if (hero.guild == GIL_STT) { return TRUE; };};FUNC VOID DIA_Bula_GoodGuildTest_Info(){ AI_Output (other, self ,"DIA_Bula_GoodGuildTest_15_01"); //Mam odpowiednią gildię! AI_Output (self, other ,"DIA_Bula_GoodGuildTest_03_02"); //Warunek hero.guild == xxx AI_Output (self, other ,"DIA_Bula_GoodGuildTest_03_03"); //TEST!};//========================================//-----------------> GoodGuild2Test//========================================INSTANCE DIA_Bula_GoodGuild2Test (C_INFO){ npc = non_2233_Bula; nr = 2; condition = DIA_Bula_GoodGuild2Test_Condition; information = DIA_Bula_GoodGuild2Test_Info; permanent = FALSE; description = "Mam dobrą gildię!";};FUNC INT DIA_Bula_GoodGuild2Test_Condition(){ if (Npc_GetTrueGuild(hero) == GIL_STT) { return TRUE; };};FUNC VOID DIA_Bula_GoodGuild2Test_Info(){ AI_Output (other, self ,"DIA_Bula_GoodGuild2Test_15_01"); //Mam dobrą gildię! AI_Output (self, other ,"DIA_Bula_GoodGuild2Test_03_02"); //Stary warunek! AI_Output (self, other ,"DIA_Bula_GoodGuild2Test_03_03"); //TEST!};
Bogdan Zwei
Lehona