28 lines
651 B
Plaintext
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);
|
||
|
|
||
|
}
|