2022-06-19 23:39:17 -04:00
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
//:: drowgone.nss
|
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
|
|
|
Removes lost drow afer quest completion
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Jaysyn
|
|
|
|
//:: Created On: 20220618
|
|
|
|
//:://////////////////////////////////////////////
|
2021-08-29 23:34:48 -04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2022-06-19 23:39:17 -04:00
|
|
|
//:: 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);
|
2021-08-29 23:34:48 -04:00
|
|
|
|
|
|
|
}
|