void main()
{
    object oPC = GetEnteringObject();
    location lVampire = GetLocation(GetWaypointByTag("asch_vamp_out02"));//Vampire start WP here
    if (GetSubRace(oPC) == "Drow" ||
        GetSubRace(oPC) == "Drow" ||
        GetSubRace(oPC) == "Drow")
    {
        AssignCommand(oPC, JumpToLocation(lVampire)); // jump to the location
    }
}