Fixed creature hak name, added more quest persistence. Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
37 lines
967 B
Plaintext
37 lines
967 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: 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);
|
|
|
|
}
|