2022-06-19 23:39:17 -04:00
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
//:: qst_mushroom_end.nss
|
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
|
|
|
Finished & rewards the PC for completing the
|
|
|
|
"Mushroom of Youth" quest.
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Jaysyn
|
|
|
|
//:: Created On: 20220619
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "pqj_inc"
|
|
|
|
#include "nw_i0_tool"
|
2022-11-19 00:37:42 -05:00
|
|
|
#include "x0_i0_partywide"
|
2022-06-19 23:39:17 -04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
//:: Declare major variables
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
|
2022-11-19 00:37:42 -05:00
|
|
|
//:: Reward the party
|
|
|
|
int nGold = 50000;
|
|
|
|
|
|
|
|
//:: Get gold for each PC
|
|
|
|
//:: Take one off GetNumberPartyMembers(), see known bugs
|
|
|
|
int nMembers = GetNumberPartyMembers(oPC) - 1;
|
|
|
|
|
|
|
|
//:: Give the correct gold to all of them
|
|
|
|
GiveGoldToAll(oPC, nGold/nMembers);
|
2022-06-19 23:39:17 -04:00
|
|
|
|
|
|
|
//:: Set quest stage & update DB.
|
|
|
|
AddPersistentJournalQuestEntry("mushroom", 2, oPC);
|
|
|
|
}
|