PWE_PRC8/_module/nss/chkasdintoken.nss

23 lines
535 B
Plaintext
Raw Permalink Normal View History

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