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;
|
|
}
|
|
}
|
|
|