27 lines
585 B
Plaintext
27 lines
585 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: qst_marthek_strt.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Starts & tracks the "Marthek the Mad" quest
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220619
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//:: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
//:: Set quest stage & update DB.
|
||
|
AddPersistentJournalQuestEntry("marthek", 1, oPC);
|
||
|
|
||
|
}
|
||
|
|