26 lines
		
	
	
		
			565 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			565 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//::///////////////////////////////////////////////
 | 
						|
//:: qst_lostgob_end.nss
 | 
						|
//:: Copyright (c) 2022 Project RATDOG
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
/*
 | 
						|
    Ends the "Lost Goblins" quest
 | 
						|
 | 
						|
*/
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//:: Created By:  Jaysyn
 | 
						|
//:: Created On:  20220730
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
 | 
						|
#include "pqj_inc"
 | 
						|
 | 
						|
 | 
						|
void main()
 | 
						|
{
 | 
						|
//:: Declare major variables
 | 
						|
        object oPC = GetPCSpeaker();
 | 
						|
 | 
						|
//:: Set quest stage & update DB.
 | 
						|
        AddPersistentJournalQuestEntry("lostgoblins", 3, oPC);
 | 
						|
 | 
						|
}
 |