23 lines
361 B
Lua
23 lines
361 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.'
|
|
},
|
|
translate = 'en'
|
|
}
|
|
|