RATDOG/_module/nss/qst_spiders_end.nss
Jaysyn904 e03053bd65 More quest persistence
More quest persistence & cleanup.
2022-06-20 14:17:58 -04:00

29 lines
697 B
Plaintext

//::///////////////////////////////////////////////
//:: qst_spiders_end.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Finished & rewards the PC for completing the
"Mushroom of Youth" quest.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220620
//:://////////////////////////////////////////////
#include "pqj_inc"
#include "nw_i0_tool"
void main()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
//:: Give the speaker some gold
GiveGoldToCreature(GetPCSpeaker(), 500);
//:: Set quest stage & update DB.
AddPersistentJournalQuestEntry("spiders", 3, oPC);
}