WoR_PRC8/_module/nss/s_hasahouseinsig.nss

20 lines
889 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_1") || 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"))
return TRUE;
return FALSE;
}