owobot/plugins/commands/help.js
2024-07-16 11:13:07 -04:00

11 lines
241 B
JavaScript

module.exports={
execute: (c)=>{
if(c.args.length>0){
c.bot.printCmdHelp(c.uuid,c.args[0]);
} else {
c.bot.printHelp(c.uuid);
}
},
desc: "Shows command help",
usage: ' [cmd]'
}