WoR_PRC8/_module/nss/s_hasnonh4_insig.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

20 lines
993 B
Plaintext

//::///////////////////////////////////////////////
//:: 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_7") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_3") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_2") ||
HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_5") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_6") || HasItem(GetPCSpeaker(), "SHA_HOUSE_INSIGNIA_1") || 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;
}