PnP Enhancements continue. Fixed some quest logic, made some of the quests reward the entire party instead of the player that turns it in. Updated Warrior's Guild. Colored Wilderness map for the hell of it. Full compile.
24 lines
551 B
Plaintext
24 lines
551 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:: qst_priests_end.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Ends the "Plotting of Priests" quest
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220618
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
|
|
void main()
|
|
{
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: Set quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("priests", 3, oPC);
|
|
|
|
} |