Added CCOH and missing areas Changed some areas to be craftable, Fixed some on death issues, Fixed the Gaurd
14 lines
265 B
Plaintext
14 lines
265 B
Plaintext
//Put this script OnEnter
|
|
void main()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
if (!GetIsPC(oPC)) return;
|
|
if (GetSubRace(oPC)!="Vampire")
|
|
{
|
|
object oDeny = GetWaypointByTag("asch_vampgotofromgrave01");
|
|
AssignCommand(oPC, JumpToObject(oDeny));
|
|
return;
|
|
}
|
|
}
|
|
|