2020-02-05 20:02:53 +00:00
module . exports = {
name : 'help' ,
alias : 'h' ,
2020-02-24 18:41:40 +00:00
usage : '<command(opt)>' ,
2020-02-05 20:02:53 +00:00
description : 'See the help for Musix.' ,
onlyDev : false ,
permission : 'none' ,
category : 'info' ,
execute ( msg , args , client , Discord , prefix , command ) {
if ( args [ 1 ] ) {
if ( ! client . commands . has ( args [ 1 ] ) || ( client . commands . has ( args [ 1 ] ) && client . commands . get ( args [ 1 ] ) . omitFromHelp === true && msg . guild . id !== '489083836240494593' ) ) return msg . channel . send ( 'That command does not exist' ) ;
const command = client . commands . get ( args [ 1 ] ) ;
const embed = new Discord . MessageEmbed ( )
. setTitle ( ` ${ client . global . db . guilds [ msg . guild . id ] . prefix } ${ command . name } ${ command . usage } ` )
. setDescription ( command . description )
2020-03-12 21:07:44 +00:00
. setFooter ( ` ${ client . messages . helpCmdFooter } \` ${ command . alias } \` ` )
2020-02-05 20:02:53 +00:00
. setColor ( client . config . embedColor )
msg . channel . send ( embed ) ;
} else {
const categories = [ ] ;
for ( let i = 0 ; i < client . commands . size ; i ++ ) {
if ( ! categories . includes ( client . commands . array ( ) [ i ] . category ) ) categories . push ( client . commands . array ( ) [ i ] . category ) ;
}
let commands = '' ;
for ( let i = 0 ; i < categories . length ; i ++ ) {
2020-03-03 20:25:12 +00:00
commands += ` **» ${ categories [ i ] . toUpperCase ( ) } ** \n ${ client . commands . filter ( x => x . category === categories [ i ] && ! x . omitFromHelp && ! x . onlyDev ) . map ( x => ` \` ${ x . name } \` ` ) . join ( ', ' ) } \n ` ;
2020-02-05 20:02:53 +00:00
}
2020-03-13 14:20:23 +00:00
let message ;
message = client . messages . helpFooter . replace ( "%PREFIX%" , prefix ) ;
2020-02-05 20:02:53 +00:00
const embed = new Discord . MessageEmbed ( )
2020-03-13 14:20:23 +00:00
. setTitle ( ` ${ client . user . username } ${ client . messages . helpTitle } ` )
2020-02-05 20:02:53 +00:00
. setDescription ( commands )
2020-03-13 14:20:23 +00:00
. setFooter ( message )
2020-02-05 20:02:53 +00:00
. setColor ( client . config . embedColor )
msg . channel . send ( embed ) ;
}
}
} ;