owobot/commands/say.js

9 lines
192 B
JavaScript
Raw Normal View History

2024-07-30 05:56:23 -04:00
module.exports = {
execute: (c) => {
if (c.args[0].startsWith('/') && c.verify < 1) return
2024-09-12 00:47:58 -04:00
c.bot.chat(c.args.join(' ').slice(0,512))
2024-07-30 05:56:23 -04:00
},
consoleIndex: true,
aliases: ['echo']
}