owobot/plugins/commands/help.js

12 lines
241 B
JavaScript
Raw Normal View History

2024-07-06 11:02:11 -04:00
module.exports={
execute: (c)=>{
if(c.args.length>0){
c.bot.printCmdHelp(c.uuid,c.args[0]);
} else {
2024-07-16 11:13:07 -04:00
c.bot.printHelp(c.uuid);
2024-07-06 11:02:11 -04:00
}
},
desc: "Shows command help",
usage: ' [cmd]'
}