24 lines
565 B
Plaintext
24 lines
565 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: qst_blood_start.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Start & tracks the "Blood of the Dead" quest.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220702
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//:: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
//:: Set quest stage & update DB.
|
||
|
AddPersistentJournalQuestEntry("blood", 1, oPC);
|
||
|
|
||
|
}
|