Amon_PRC8/_module/nss/has_bl1.nss

9 lines
212 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
int StartingConditional()
{
object oPC = GetPCSpeaker();
// Make sure the PC speaker has these items in their inventory
if (GetItemPossessedBy(oPC, "BL1") == OBJECT_INVALID) return FALSE;
return TRUE;
}