owobot/plugins/commands/say.js
2024-07-27 02:39:18 -04:00

7 lines
166 B
JavaScript

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