RATDOG/_module/nss/qst_papers_end.nss

32 lines
710 B
Plaintext
Raw Normal View History

//:://////////////////////////////////////////////
//:: qst_papers_end.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Ends & rewards the "Papers of Office" quest
for the Theives' Guild
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220618
//:://////////////////////////////////////////////
#include "pqj_inc"
#include "x0_i0_partywide"
void main()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
//:: GP reward
GiveGoldToCreature(oPC, 1000);
//:: XP reward
GiveXPToAll(oPC, 500);
//:: Set quest stage & update DB.
AddPersistentJournalQuestEntry("papers", 3, oPC);
}