//:://///////////////////////////////////////////// //:: FileName s_hasnonh1_insig //::////////////////////////////////////////////// //::////////////////////////////////////////////// //:: Created By: Script Wizard //:: Created On: 3/5/2005 5:56:26 PM //::////////////////////////////////////////////// #include "nw_i0_tool" int StartingConditional() { // Make sure the PC speaker has these items in their inventory if(HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_2") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_1") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_4") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_5") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_6") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_7") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_8") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_L1") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_L2") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_L3")) return TRUE; return FALSE; }