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

14 lines
327 B
Plaintext

int StartingConditional()
{
// Get the PC who is involved in this conversation
object oPC = GetPCSpeaker();
// The PC must possess "Bros_Locket".
if ( GetItemPossessedBy(oPC, "Bros_Locket") == OBJECT_INVALID )
return FALSE;
// If we make it this far, we have passed all tests.
return TRUE;
}