29 lines
697 B
Plaintext
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);
|
||
|
}
|
||
|
|