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,16 +0,0 @@
// this one check to see if they have just been turned...
// because HABD shouldn't be used if they are a Vampire.
int dr_ifVampireReturn (object oPC, string sStuffToPrint);
// this code prints out that a vampire inappropriately got to the habd
// death system. In part, this is normal.
int dr_ifVampireReturn (object oPC, string sStuffToPrint)
{
// DAVIDBEOULVE: if they are a vampire, this script shouldn't keep calling itself.
if ((GetSubRace(oPC))== "Vampire")
{
PrintString("habd_onpcdeath: |" + GetName(oPC) + " was a Vampire| " + sStuffToPrint);
return TRUE;
}
return FALSE;
}