Added CCOH and missing areas Changed some areas to be craftable, Fixed some on death issues, Fixed the Gaurd
24 lines
801 B
Plaintext
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;
|
|
}
|