RATDOG/_module/nss/qst_outcst_end.nss

29 lines
638 B
Plaintext
Raw Normal View History

//:://////////////////////////////////////////////
//:: qst_outcst_end.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Ends & rewards "The Oucasts" quest
for the vagrants in the woods
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220618
//:://////////////////////////////////////////////
#include "pqj_inc"
void main()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
//:: XP reward
GiveXPToCreature(oPC, 200);
//:: Set quest stage & update DB.
AddPersistentJournalQuestEntry("outcasts", 3, oPC);
}