WoR_PRC8/_module/nss/s_hasnonh1_insig.nss

20 lines
993 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: 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_3") || 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;
}