5ef905449d
* Add 24h growth indicator * Fix float math * Fix some bugs * Trim decimals * Add 24 hour observed growth * Add beginning height option * Changed startup message to ping me * Add a ping reminder and setup command for it * Setup automatic water reminders * Improved workflows * New water readiness system * Documentation Time * Fix slash command link * Fix linebreaks * Readability improvements * Forgot to allow checking in prod * Switch to ephemeral reply * Restructuring and new help messages * Not meant to be uploaded * Documentation update * Changing the way reminders are deleted * Tweak timings * Adjust readiness detection system * moar tweekz * fix reminders * Updates to water reminders
20 lines
820 B
JavaScript
20 lines
820 B
JavaScript
const { SlashCommandBuilder, messageLink } = require('discord.js');
|
|
const fn = require('../modules/functions.js');
|
|
const strings = require('../data/strings.json');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('help')
|
|
.setDescription('Get help using the bot')
|
|
.addStringOption(o =>
|
|
o.setName('private')
|
|
.setDescription('Should the response be sent privately?')
|
|
.setRequired(true)
|
|
.addChoices(
|
|
{ name: "True", value: "true" },
|
|
{ name: "False", value: "false" })),
|
|
execute(interaction) {
|
|
const helpEmbed = fn.builders.helpEmbed(`${strings.help.info}\n\n**Setup**\n${strings.help.setup}\n\nSee </commands:0> for a list of all my commands\n\n**Support Server**\n${strings.urls.supportServer}`, interaction.options.getString('private'));
|
|
interaction.reply(helpEmbed);
|
|
},
|
|
}; |