Fixed creature hak name, added more quest persistence. Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
26 lines
612 B
Plaintext
26 lines
612 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: qst_losthubby01.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Set quest stage 1 for the Lost Husband quest
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220617
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
|
|
void main()
|
|
{
|
|
//:: Declare Major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: Set Quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("husband", 1, oPC);
|
|
|
|
//SetPersistantLocalInt(oPC, "husband", 1);
|
|
|
|
}
|