25 lines
563 B
Plaintext
25 lines
563 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: qst_dirty_2nd.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Sets stage #2 for the "Dirty Deeds" quest.
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220702
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
|
|
void main()
|
|
{
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: Set quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("dirtydeed", 2, oPC);
|
|
|
|
}
|