Amon_PRC8/_module/nss/has_bl2.nss

19 lines
583 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//::///////////////////////////////////////////////
//:: FileName has_bl2
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 5/30/2004 4:20:32 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
// Make sure the PC speaker has these items in their inventory
if (GetItemPossessedBy(oPC, "bl_item1") == OBJECT_INVALID) return FALSE;
if (GetItemPossessedBy(oPC, "BL2") == OBJECT_INVALID) return FALSE;
return TRUE;
}