Added (2) Castle Interior overrides, continued making static NPCs & stores dynamic. added more DMFI language tokens, started working on mod onEnter scripting, got NPCs to fire emotes while walking around.
		
			
				
	
	
		
			20 lines
		
	
	
		
			414 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			414 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//:://////////////////////////////////////////////
 | 
						|
//:: FileName cv_is_male
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//::
 | 
						|
//:: Returns if speaker is male.
 | 
						|
//::
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
 | 
						|
int StartingConditional()
 | 
						|
{
 | 
						|
 | 
						|
	// Add the gender restrictions
 | 
						|
	if(GetGender(GetPCSpeaker()) != GENDER_MALE)
 | 
						|
		return FALSE;
 | 
						|
 | 
						|
	return TRUE;
 | 
						|
}
 | 
						|
 |