Amon_PRC8/_module/nss/has_bl_item2.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

20 lines
590 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName has_bl_item2
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 5/29/2004 11:59:14 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
// Make sure the PC speaker has these items in their inventory
if (GetItemPossessedBy(oPC, "bl_item2") == OBJECT_INVALID) return FALSE;
if (GetItemPossessedBy(oPC, "BL3") == OBJECT_INVALID) return FALSE;
return TRUE;
}