26 lines
629 B
Plaintext
26 lines
629 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: qst_mushroom_st.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Starts & tracks the "Mushroom of Youth" quest
|
||
|
for the hermit in Horsefly Swamp.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220619
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//:: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
//:: Set quest stage & update DB.
|
||
|
AddPersistentJournalQuestEntry("mushroom", 1, oPC);
|
||
|
|
||
|
}
|
||
|
|