Area Changes and other fixes

added areas and ccoh,
fixed some areas to work with crafting
fixed some on death issues
added server entry/ooc
This commit is contained in:
2024-08-30 10:38:04 -04:00
parent d39928374d
commit 8622e5ce08
17234 changed files with 0 additions and 4253346 deletions

View File

@@ -1,23 +0,0 @@
//::///////////////////////////////////////////////
//:: 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;
}