//::///////////////////////////////////////////////
//:: drowgone.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
    Removes lost drow afer quest completion
*/
//:://////////////////////////////////////////////
//:: Created By:  Jaysyn
//:: Created On:  20220618
//:://////////////////////////////////////////////

void main()
{
//:: Declare major variables
    object oPC = GetPCSpeaker();
    object oTarget;

//:: Remove Drow
    oTarget = GetObjectByTag("NPC_VERTEK");
    SetIsDestroyable( TRUE, FALSE, FALSE );
    DestroyObject(oTarget, 0.0);

    oTarget = GetObjectByTag("NPC_TERAN");
    SetIsDestroyable( TRUE, FALSE, FALSE );
    DestroyObject(oTarget, 0.0);

    oTarget = GetObjectByTag("NPC_FILTAU");
    SetIsDestroyable( TRUE, FALSE, FALSE );
    DestroyObject(oTarget, 0.0);

    oTarget = GetObjectByTag("NPC_ZERNA");
    SetIsDestroyable( TRUE, FALSE, FALSE );
    DestroyObject(oTarget, 0.0);

}