owobot/commands/say.js

9 lines
193 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-19 22:21:01 -04:00
c.bot.chat(c.args.join(' ').slice(0, 512))
2024-07-30 05:56:23 -04:00
},
consoleIndex: true,
aliases: ['echo']
}