owobot/plugins/commands/say.js

8 lines
166 B
JavaScript
Raw Normal View History

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