PWE_PRC8/_module/nss/chkcyrustoken.nss

23 lines
534 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
//::///////////////////////////////////////////////
//:: FileName chkcyrustoken
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/9/2002 3:00:11 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
//Player has Cyruss Token
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"CyrussToken")))
{
return TRUE;
}
else
{
return FALSE;
}
}