PWE_PRC8/_module/nss/chkoracleamulet.nss

23 lines
539 B
Plaintext
Raw Normal View History

2025-04-03 10:29:41 -04:00
//::///////////////////////////////////////////////
//:: FileName chkoracleamulet
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/27/2002 11:59:44 AM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
//Player has Oracle Amulet
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"OracleAmulet")))
{
return TRUE;
}
else
{
return FALSE;
}
}