PWE_PRC8/_module/nss/chkancientscroll.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

23 lines
538 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName inancientmap
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/18/2002 12:13:46 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
//Player has Ancient Scroll
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"AncientScroll")))
{
return TRUE;
}
else
{
return FALSE;
}
}