14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
//Put this script OnEnter
|
|
void main()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
if (!GetIsPC(oPC)) return;
|
|
if (GetSubRace(oPC)!="Vampire")
|
|
{
|
|
object oDeny = GetWaypointByTag("vamp_asch_004");
|
|
AssignCommand(oPC, JumpToObject(oDeny));
|
|
return;
|
|
}
|
|
}
|
|
|