owobot/commands/say.js

9 lines
179 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(' '))
},
2024-07-28 03:42:15 -04:00
consoleIndex: true,
aliases: ['echo']
2024-07-27 02:39:18 -04:00
}