hullcss-discord-bot/commands/general/help.js

82 lines
2.5 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

const discord = require("discord.js");
module.exports = {
name: "help",
aliases: [''],
/**
*
* @param {Client} client
* @param {Message} message
* @param {String[]} args
*/
run: async (client, message, args) => {
if(!args[0]){
const embed = new discord.MessageEmbed()
.setTitle("HullCSS Help")
.setDescription("You can use `!help <category>` to get additional commands within a specfic category")
.setColor('GREEN')
.addField('❓`!help`','This Command', true)
.addField('🛠️`!help admin`','Displays Admin Commands!', true)
.addField(' `!help general`', 'Displays General Commands!', true)
.addField('🎉`!help fun`', 'Displays Fun Commands!', true)
.addField('🐹 `!help gorb`', 'Displays Gorb Commands', true)
message.channel.send({ embeds: [embed] });
}
if(args[0] === 'admin'){
const embed = new discord.MessageEmbed()
.setTitle("Admin Commands")
.setColor('GREEN')
message.channel.send({ embeds: [embed] });
}
if(args[0] === 'general'){
const embed = new discord.MessageEmbed()
.setTitle("General Comamnds")
.setColor('GREEN')
.addField('!buy', 'Sends a link to purchase membership')
.addField('!links', 'Get all the links')
.addField('!freeside', 'A link to the Freeside discord server')
.addField('!robsoc', 'A link to the Robotics Society discord server')
message.channel.send({ embeds: [embed] });
}
if(args[0] === 'fun'){
const embed = new discord.MessageEmbed()
.setTitle("Fun Comamnds")
.setColor('GREEN')
.addField('!8ball', 'Answer your deepest questions.')
.addField('!gorb', 'guinea pig orb')
.addField('!torch', 'Light the way')
message.channel.send({ embeds: [embed] });
}
if(args[0] === 'gorb'){
const embed = new discord.MessageEmbed()
.setTitle("Gorb Comamnds")
.setColor('GREEN')
.addField('!gorb cs', 'CS Gorb')
.addField('!gorb party', 'Party Gorb')
.addField('!gorb christmas', 'Christmas Gorb')
.addField('!gorb storm', 'Storm Gorb')
message.channel.send({ embeds: [embed] });
}
}
}