Fixed creature hak name, added more quest persistence. Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			617 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			617 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//::///////////////////////////////////////////////
 | 
						|
//:: npcrecgnknows.nss
 | 
						|
//:: Copyright (c) 2022 Project RATDOG
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
/*
 | 
						|
    Returns true if this is not the first time
 | 
						|
    you've spoken to this character
 | 
						|
*/
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
/*
 | 
						|
 | 
						|
*/
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//:: Created By:  Jaysyn
 | 
						|
//:: Created On:  20220617
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
 | 
						|
int StartingConditional()
 | 
						|
{
 | 
						|
 | 
						|
    object oPC = GetPCSpeaker();
 | 
						|
 | 
						|
    if (GetLocalInt(oPC,"Spoke2Greeter") > 0)
 | 
						|
        return TRUE;
 | 
						|
    return FALSE;
 | 
						|
}
 |