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