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

11 lines
250 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,c.prefix);
}
},
desc: "Shows command help",
usage: ' [cmd]'
}