27 lines
658 B
Plaintext
27 lines
658 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: qst_tribitz_end.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Finishes the "Quests of Tribitz" quest.
|
||
|
Stage #6, where the PCs have discovered
|
||
|
Tribitz betrayal.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Tolen
|
||
|
//:: Created On: 8/24/2005 9:08:28 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//:: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
//:: Set quest stage & update DB.
|
||
|
AddPersistentJournalQuestEntry("tribitz", 6, oPC);
|
||
|
|
||
|
}
|