14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
module.exports = {
|
|
name: 'echo',
|
|
description:['make me say something in chat'],
|
|
execute (context) {
|
|
const bot = context.bot
|
|
const message = context.arguments.join(' ')
|
|
|
|
if (message.startsWith('/')) {
|
|
bot.command(message.substring(1))
|
|
return
|
|
}
|
|
bot.chat(message)
|
|
}
|
|
}
|