RATDOG/_module/nss/qst_aragnak_end.nss
Jaysyn904 2105778d4c Fixed creature hak name, added more quest persistence
Fixed creature hak name, added more quest persistence.

Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
2022-06-19 23:39:17 -04:00

28 lines
651 B
Plaintext

//::///////////////////////////////////////////////
//:: qst_aragnak_end.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Ends & rewards the "Aragnak the Red" quest.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220619
//:://////////////////////////////////////////////
#include "pqj_inc"
#include "nw_i0_tool"
void main()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
//:: Give the PC's party some XP
RewardPartyXP(5000, oPC);
//:: Set quest stage & update DB.
AddPersistentJournalQuestEntry("aragnak", 2, oPC);
}