27 lines
639 B
Plaintext
27 lines
639 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: qst_ghost_end.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Ends & tracks the "Ghostly Geas" quest.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220620
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//:: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
//:: Set quest stage & update DB.
|
||
|
AddPersistentJournalQuestEntry("ghost", 2, oPC);
|
||
|
|
||
|
//:: Give the PC the Archwizard's Key
|
||
|
CreateItemOnObject("item062", oPC, 1);
|
||
|
|
||
|
}
|