22 lines
		
	
	
		
			342 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			342 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| return {
 | |
| 	interactions = { -- Add to this table as you'd like.
 | |
| 		['Hello, #NAME.'] = {
 | |
| 			'hello',
 | |
| 			'hey',
 | |
| 			'hi'
 | |
| 		},
 | |
| 		['Goodbye, #NAME.'] = {
 | |
| 			'bye',
 | |
| 			'later',
 | |
| 			'see ya'
 | |
| 		}
 | |
| 	},
 | |
| 	errors = {
 | |
| 		connection	= 'Connection error.',
 | |
| 		results		= 'No results found.',
 | |
| 		argument	= 'Invalid argument.',
 | |
| 		syntax		= 'Invalid syntax.'
 | |
| 	}
 | |
| }
 | |
| 
 | 
