32 lines
725 B
Plaintext
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);
|
|
|
|
|
|
}
|