26 lines
579 B
Plaintext
26 lines
579 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: qst_marthek_4th.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Sets stage 4 for the "Marthek the Madman" quest
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220620
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
|
|
void main()
|
|
{
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: Set quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("marthek", 4, oPC);
|
|
|
|
}
|
|
|