28 lines
627 B
Plaintext
28 lines
627 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: qst_door_end.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Ends "Master of the Door" quest.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220705
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: Set quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("door", 2, oPC);
|
|
|
|
//:: Give the PC's party XP
|
|
RewardPartyXP(1000, oPC);
|
|
|
|
}
|