mirror of
https://github.com/ION606/selmerBot.git
synced 2026-05-14 21:26:54 +00:00
Added more moderation commands and upgraded the 'audio' command
This commit is contained in:
+39
-10
@@ -1,48 +1,77 @@
|
||||
const { modHelp } = require('../admin/moderation.js');
|
||||
|
||||
module.exports ={
|
||||
name: "help",
|
||||
description: "Gets help for all of Selmer Bot's commands",
|
||||
execute(message, args, Discord, Client, bot) {
|
||||
|
||||
const groups = new Map([['SBspec', ['arrow', 'extracredit', 'profile', 'quotes']], ['adminCommands', [ 'setup', 'lock', 'unlock', 'serverLock' ]]]);
|
||||
|
||||
if (args[0] == 'econ') {
|
||||
let temp = "***Selmer Bot Commands (Econ):***\n";
|
||||
temp += bot.commands.get('econ').econHelp();
|
||||
temp += `\n\n(remember to use _'${bot.prefix}'_ before the command!)`;
|
||||
return message.channel.send(temp);
|
||||
|
||||
}
|
||||
else if (args[0] == 'game') {
|
||||
let temp = "***Selmer Bot Commands (Games):***\n";
|
||||
temp += bot.commands.get('game').allGames.join(", ");
|
||||
temp += `\n\n(remember to use _'${bot.prefix}game'_ before the command!)`;
|
||||
return message.channel.send(temp);
|
||||
|
||||
}
|
||||
else if (args[0] == 'admin') {
|
||||
let temp = `__**Selmer Bot Admin Commands**__\n`
|
||||
Array.from(groups.get('adminCommands')).forEach(commName => {
|
||||
let comm = bot.commands.get(commName);
|
||||
temp += `${comm.name.toLowerCase()} - _${comm.description}_\n`;
|
||||
});
|
||||
|
||||
temp += `__**Selmer Bot Moderation Commands**__\n`
|
||||
temp += modHelp();
|
||||
|
||||
//Uses a different format, only the server owner can use it
|
||||
temp += '\n_setup_ - ***SERVER OWNER ONLY*** - use _!setup help_\n';
|
||||
temp += `\n\n(remember to use _'${bot.prefix}'_ before the command!)`;
|
||||
|
||||
return message.channel.send(temp);
|
||||
}
|
||||
|
||||
let temp = "***Selmer Bot Commands:***\n";
|
||||
|
||||
bot.commands.sort((a, b) => {if (a.name && b.name) { return a.name[0] < b.name[0]} else {return false;} });
|
||||
|
||||
bot.commands.forEach((comm) => {
|
||||
const noPostList = Array.from(groups.values()).flat();
|
||||
const sList = groups.get('SBspec');
|
||||
|
||||
bot.commands.forEach((comm) => {
|
||||
if (comm.name != 'verify') {
|
||||
if (comm.name == 'econ') {
|
||||
temp += `econ - use _!help econ_\n`;
|
||||
temp += `**econ** - use _!help econ_\n`;
|
||||
}
|
||||
else if (comm.name == 'game') {
|
||||
temp += `game - use _!help game_\n`;
|
||||
} /* else if (comm.name == 'setup') {
|
||||
temp += `setup - use _!setup_\n`;
|
||||
}*/
|
||||
temp += `**games** - use _!help game_\n`;
|
||||
}
|
||||
else {
|
||||
if (comm.name && comm.description) {
|
||||
if (comm.name && comm.description && !noPostList.includes(comm.name)) {
|
||||
temp += `${comm.name.toLowerCase()} - _${comm.description}_\n`;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
//Uses a different format, only the server owner can use it
|
||||
temp += '_setup_ - ***SERVER OWNER ONLY*** - use _!setup help_\n';
|
||||
|
||||
temp += '**admin/moderation commands** - use !help admin\n';
|
||||
|
||||
//Selmer Specific
|
||||
temp += '\n__**Selmer\'s \\*Special\\* Commands**__\n'
|
||||
sList.forEach((commName) => {
|
||||
const comm = bot.commands.get(commName);
|
||||
temp += `${comm.name.toLowerCase()} - _${comm.description}_\n`;
|
||||
})
|
||||
|
||||
temp += `\n_(remember to use '${bot.prefix}' before the command!)_`;
|
||||
|
||||
message.channel.send(temp);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user