2022-06-19 23:39:17 -04:00
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
//:: qst_outcst_start.nss
|
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
|
|
|
Starts & tracks the "Outcasts" quest
|
|
|
|
for the vagrants in the woods
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Jaysyn
|
|
|
|
//:: Created On: 20220618
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "pqj_inc"
|
|
|
|
|
|
|
|
void main()
|
2022-07-03 00:17:49 -04:00
|
|
|
{
|
2022-06-19 23:39:17 -04:00
|
|
|
//:: Declare major variables
|
2022-07-03 00:17:49 -04:00
|
|
|
object oPC = GetPCSpeaker();
|
2022-06-19 23:39:17 -04:00
|
|
|
|
|
|
|
//:: Set quest stage & update DB.
|
2022-07-03 00:17:49 -04:00
|
|
|
AddPersistentJournalQuestEntry("outcasts", 1, oPC);
|
2022-06-19 23:39:17 -04:00
|
|
|
|
2022-07-03 00:17:49 -04:00
|
|
|
}
|