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.
29 lines
660 B
Plaintext
29 lines
660 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:: qst_outcst_end.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Ends & rewards "The Outcasts" quest
|
|
for the vagrants in the woods
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220618
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
#include "x0_i0_partywide"
|
|
|
|
void main()
|
|
{
|
|
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: XP reward
|
|
GiveXPToAll(oPC, 200);
|
|
|
|
//:: Set quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("outcasts", 3, oPC);
|
|
|
|
} |