//:://///////////////////////////////////////////// //:: qst_tribitz_7th.nss //:: Copyright (c) 2022 Project RATDOG //::////////////////////////////////////////////// /* Sets stage 7 for the "Quests for Tribitz" quest & give the PC the quest item. */ //::////////////////////////////////////////////// //:: Created By: Tolen //:: Created On: 8/24/2005 9:00:06 PM //::////////////////////////////////////////////// #include "pqj_inc" void main() { //:: Declare major variables object oPC = GetPCSpeaker(); //:: Set quest stage & update DB. AddPersistentJournalQuestEntry("tribitz", 7, oPC); //:: Give the PC the plot item CreateItemOnObject("item051", oPC, 1); }