Fixed creature hak name, added more quest persistence. Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			592 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			592 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//:://////////////////////////////////////////////
 | 
						|
//:: qst_priests_strt.nss
 | 
						|
//:: Copyright (c) 2022 Project RATDOG
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
/*
 | 
						|
    Starts & tracks the "Plotting of Priests" quest
 | 
						|
 | 
						|
*/
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//:: Created By:  Jaysyn
 | 
						|
//:: Created On:  20220618
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
 | 
						|
#include "pqj_inc"
 | 
						|
 | 
						|
void main()
 | 
						|
    {
 | 
						|
//:: Declare major variables
 | 
						|
              object oPC = GetPCSpeaker();
 | 
						|
 | 
						|
//:: Set quest stage & update DB.
 | 
						|
        AddPersistentJournalQuestEntry("priests", 1, oPC);
 | 
						|
 | 
						|
    }
 |