owobot/plugins/commands/help.js
2024-07-16 10:43:20 -04:00

11 lines
244 B
JavaScript

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