RATDOG/_module/nss/qst_husband_end.nss
Jaysyn904 2cf9f57160 Quest persistence pass
Quest persistence pass.
2022-07-03 00:17:49 -04:00

32 lines
725 B
Plaintext

//::///////////////////////////////////////////////
//:: qst_huband_end.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Ends & rewards the "Lost Husband" 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(2000, oPC);
//:: Give the PC a diamond.
CreateItemOnObject("nw_it_gem005", oPC, 1);
//:: Set Quest stage & update DB.
AddPersistentJournalQuestEntry("husband", 3, oPC);
}