2022-06-20 14:17:58 -04:00
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
//:: qst_ghost_start.nss
|
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
|
|
|
Start & tracks the "Ghostly Geas" quest
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Jaysyn
|
|
|
|
//:: Created On: 20220620
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "pqj_inc"
|
|
|
|
|
|
|
|
void main()
|
2022-07-03 00:17:49 -04:00
|
|
|
{
|
2022-06-20 14:17:58 -04:00
|
|
|
//:: Declare major variables
|
2022-07-03 00:17:49 -04:00
|
|
|
object oPC = GetPCSpeaker();
|
2022-06-20 14:17:58 -04:00
|
|
|
|
|
|
|
//:: Set quest stage & update DB.
|
2022-07-03 00:17:49 -04:00
|
|
|
AddPersistentJournalQuestEntry("ghost", 1, oPC);
|
2022-06-20 14:17:58 -04:00
|
|
|
|
2022-07-03 00:17:49 -04:00
|
|
|
}
|