Aschbourne_PRC8/_module/nss/shrine_defile_ck.nss
Jaysyn904 f5ffe7d0b9 Module commit
Module commit.
2024-06-14 10:48:20 -04:00

24 lines
801 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName holy_water
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 05/01/2004 22:47:25
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
// In this case they need holy water to defile the shrine
// Comment out the next two lines if you do not wish the
// PC's to need an item to defile the shrine, alternatively
// add the tag of any specific item you create to do
// the job in the place of X1_WMGREADE005
if(!HasItem(GetPCSpeaker(), "X1_WMGRENADE005"))
return FALSE;
return TRUE;
}