10 lines
		
	
	
		
			326 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			326 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
int StartingConditional()
 | 
						|
{
 | 
						|
    string sName = GetLocalString(OBJECT_SELF, "sName");
 | 
						|
    string sLastName = GetLocalString(OBJECT_SELF, "sLastName");
 | 
						|
    SetCustomToken(11001, sName);
 | 
						|
    SetCustomToken(11002, sLastName);
 | 
						|
    if (Random(3) == 0 && GetLocalInt(OBJECT_SELF, "Nemesis") == TRUE) return TRUE;
 | 
						|
    return FALSE;
 | 
						|
}
 |