From da56d51ba0b6640a86e2f987de7225e52da06e60 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Sun, 30 Jan 2022 21:50:18 +0700 Subject: [PATCH] Better help message --- src/discord/Help.ts | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/src/discord/Help.ts b/src/discord/Help.ts index b16ce26..5336c9b 100644 --- a/src/discord/Help.ts +++ b/src/discord/Help.ts @@ -17,22 +17,32 @@ const EMBEDS = { let _e = makeInfoEmbed({ icon: "💌", title: `Help - ${DiscordProvider.client.user?.username}`, + description: `\u200b\n📰 **Info**\nYumi is currently undergoing complete rewrite, as expected, losing many of her functionality. All of the features will be re-implemented.\n\n🤔 **Why?**\nYumi was specifically written for use in a only 1 private server, now it's time to extend the border and globalize it (just kidding lol)\n\n🏷️ **Prefix**\nYou can call me using \`\`${prefix.replaceAll('`','`​')}\`\`, <@${DiscordProvider.client.user?.id}> or \`\`/slash command\`\`\n\n💻 **Available commands**`, fields: [ { - name: 'Info', - value: `Yumi is currently undergoing complete rewrite, as expected, losing many of her functionality. All of the features will be re-implemented.` + name: '☕ General', + value: `help, ping, invite, userinfo`, + inline: true }, { - name: 'Why?', - value: `Yumi was specifically written for use in a only 1 private server, now it's time to extend the border and globalize it (just kidding lol)` + name: '🎵 Music', + value: `play, search, skip, queue, join, leave`, + inline: true }, { - name: 'Prefix', - value: `You can call me using \`\`${prefix.replaceAll('`','`​')}\`\`, <@${DiscordProvider.client.user?.id}> or \`\`/slash command\`\`` + name: '🎮 Games', + value: `osu`, + inline: true }, { - name: 'Available commands', - value: '``help``\n``ping``\n``invite``\n``osu``\n``membershipscreening (ms)``\n``interaction`' + name: '🔐 Admin', + value: `settings, say, membershipscreening (ms)`, + inline: true + }, + { + name: '🔧 Developer', + value: 'interactions, serviceannouncement', + inline: true } ], user: (data instanceof Interaction) ? data.user : data.author