36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Extend the search for new messages to be read.
 | 
						|
grepStrings+=('-e' '^\*\*\* Brutality Bonus awarded!'
 | 
						|
    '-e' '^\+[0-9]+ '
 | 
						|
    '-e' '^A backpack for all your ammo storage needs!$'
 | 
						|
    '-e' '^Area survey map.$'
 | 
						|
    '-e' ' died.'
 | 
						|
    '-e' 'Ectoplasmic Surge!'
 | 
						|
    '-e' '^Game Saved.'
 | 
						|
    '-e' ' has been '
 | 
						|
    '-e' '^(Armor|Health) boosted!'
 | 
						|
    '-e' '(Greater|Lesser) demon energy'
 | 
						|
    '-e' '^Found '
 | 
						|
    '-e' 'Got the '
 | 
						|
    '-e' ' killed (her|him|it)self(\.|!)'
 | 
						|
    '-e' '^Low-light goggles.$'
 | 
						|
    '-e' '^Picked up '
 | 
						|
    '-e' '^Press '
 | 
						|
    '-e' 'Rescue operations suit.'
 | 
						|
    '-e' '^(Mega|Soul|Invulnerability )[Ss]phere!$'
 | 
						|
    '-e' '^Mancubus '
 | 
						|
    '-e' ' skeleton key secured!$'
 | 
						|
    '-e' ' \(Slot [0-9]+\)'
 | 
						|
    '-e' ' (SPLATTERED|was) .*(\.|!)'
 | 
						|
    '-e' ' Swiss Cheese '
 | 
						|
    '-e' '^Took '
 | 
						|
    '-e' '^Vanguard of the gods!$'
 | 
						|
    '-e' "You've found "
 | 
						|
    '-e' 'You (collected|got|found|picked up) ')
 | 
						|
                                                                                                                                                                          
 | 
						|
antiGrepStrings+=('-e' 'key card'
 | 
						|
    '-e' ' was .*\?'
 | 
						|
)
 | 
						|
                                                                                                                                                                          
 | 
						|
sedStrings+=('-e' 's/*\{3\}//g'
 | 
						|
    '-e' 's/^+//')
 |