owobot/commands/say.js
2024-09-19 22:21:01 -04:00

8 lines
193 B
JavaScript
Executable file

module.exports = {
execute: (c) => {
if (c.args[0].startsWith('/') && c.verify < 1) return
c.bot.chat(c.args.join(' ').slice(0, 512))
},
consoleIndex: true,
aliases: ['echo']
}