Fixed creature hak name, added more quest persistence. Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
27 lines
563 B
Plaintext
27 lines
563 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: qst_orcus_start.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Starts the "Orcus" quest
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220618
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
|
|
|
|
void main()
|
|
{
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: Set quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("orcus", 1, oPC);
|
|
|
|
}
|
|
|