owobot/plugins/commands/help.js
7cc5c4f330d47060 de78065438 Initial commit
2024-07-06 11:02:11 -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]'
}