Areas and Fixes
Added CCOH and missing areas Changed some areas to be craftable, Fixed some on death issues, Fixed the Gaurd
This commit is contained in:
13
_module/nss/vamp_only.nss
Normal file
13
_module/nss/vamp_only.nss
Normal file
@@ -0,0 +1,13 @@
|
||||
//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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user