FridayNightFunkinBoyfriendBot/commands/echo.js

17 lines
359 B
JavaScript
Raw Normal View History

2024-02-13 12:11:00 -05:00
module.exports = {
name: 'echo',
description:['make me say something in chat'],
hashOnly:false,
consoleOnly:false,
execute (context) {
const bot = context.bot
const message = context.arguments.join(' ')
if (message.startsWith('/')) {
bot.command(message.substring(1))
return
}
bot.chat(message)
}
}