FridayNightFunkinBoyfriendBot/commands/echo.js
2024-02-20 16:58:22 +00:00

14 lines
259 B
JavaScript

module.exports = {
name: 'echo',
execute (context) {
const bot = context.bot
const message = context.arguments.join(' ')
if (message.startsWith('/')) {
bot.command(message.substring(1))
return
}
bot.chat(message)
}
}