2022-06-19 23:39:17 -04:00
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: qst_outcst_end.nss
|
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
2022-11-19 00:37:42 -05:00
|
|
|
Ends & rewards "The Outcasts" quest
|
2022-06-19 23:39:17 -04:00
|
|
|
for the vagrants in the woods
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Jaysyn
|
|
|
|
//:: Created On: 20220618
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "pqj_inc"
|
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();
|
|
|
|
|
|
|
|
//:: XP reward
|
2022-11-19 00:37:42 -05:00
|
|
|
GiveXPToAll(oPC, 200);
|
2022-06-19 23:39:17 -04:00
|
|
|
|
|
|
|
//:: Set quest stage & update DB.
|
|
|
|
AddPersistentJournalQuestEntry("outcasts", 3, oPC);
|
|
|
|
|
2022-11-19 00:37:42 -05:00
|
|
|
}
|