26 lines
603 B
Plaintext
26 lines
603 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
//:: qst_priests_2nd.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Starts the 2nd stage of the "Plotting of
|
||
|
Priests" quest
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220618
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//:: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
//:: Set quest stage & update DB.
|
||
|
AddPersistentJournalQuestEntry("priests", 2, oPC);
|
||
|
|
||
|
}
|