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.
32 lines
710 B
Plaintext
32 lines
710 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:: qst_papers_end.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Ends & rewards the "Papers of Office" quest
|
|
for the Theives' Guild
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220618
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
#include "x0_i0_partywide"
|
|
|
|
void main()
|
|
{
|
|
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: GP reward
|
|
GiveGoldToCreature(oPC, 1000);
|
|
|
|
//:: XP reward
|
|
GiveXPToAll(oPC, 500);
|
|
|
|
//:: Set quest stage & update DB.
|
|
AddPersistentJournalQuestEntry("papers", 3, oPC);
|
|
|
|
} |