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

23 lines
531 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName checkgatekey
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/18/2002 2:30:27 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
//Player has Epion Gate Key
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"GateKey")))
{
return TRUE;
}
else
{
return FALSE;
}
}