owobot/plugins/commands/say.js

8 lines
158 B
JavaScript
Raw Normal View History

module.exports = {
execute: (c) => {
if (c.args[0].startsWith('/') && c.verify < 1) return
c.bot.chat(c.args.join(' '))
},
consoleIndex: true
2024-07-27 02:39:18 -04:00
}