Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
fix: Update layout and styling for /help command
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusbegby committed Jul 14, 2023
1 parent 4560639 commit 923697c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
23 changes: 11 additions & 12 deletions commands/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,17 @@ module.exports = {
new EmbedBuilder()
.setDescription(
`${embedIcons.rule} **List of commands**\n` +
'`/help` - Show this menu.\n' +
'`/play` `query` - Add a track or playlist to the queue by searching or url.\n' +
'`/pause` - Pause or resume the current track.\n' +
'`/queue` `[page]` - Show the list of tracks added to the queue.\n' +
'`/nowplaying` - Show information about the track currently playing.\n' +
'`/filters` - Toggle various audio filters during playback.\n' +
'`/volume` `[percentage]` - Show or set the playback volume for tracks.\n' +
'`/skip` `[trackNumber]` - Skip the current track.\n' +
'`/remove` `trackNumber` - Remove a specific track from the queue.\n' +
'`/leave` - Remove bot from voice channel and clear the queue.\n\n' +
`${embedIcons.support} **Support server**\nJoin the support server for help or suggestions: \n${botInfo.supportServerInviteUrl}\n\n` +
`${embedIcons.bot} **Invite the bot**\nAdd me to another server: \n[Click me!](${botInfo.botInviteUrl})`
'- `/play` `query` - Add a track or playlist to the queue by searching or url.\n' +
'- `/pause` - Pause or resume the current track.\n' +
'- `/queue` `[page]` - Show the list of tracks added to the queue.\n' +
`- \`/nowplaying\` - ${embedIcons.new} Show information about the track currently playing.\n` +
`- \`/filters\` - ${embedIcons.beta} Toggle various audio filters during playback.\n` +
'- `/volume` `[percentage]` - Show or set the playback volume for tracks.\n' +
'- `/skip` `[trackNumber]` - Skip current or specified track.\n' +
'- `/remove` `trackNumber` - Remove a specific track from the queue.\n' +
'- `/leave` - Clear the track queue and remove the bot from voice channel.\n\n' +
`${embedIcons.support} **Support server**\nJoin the support server for help or suggestions: \n**${botInfo.supportServerInviteUrl}**\n\n` +
`${embedIcons.bot} **Enjoying ${botInfo.name}?**\nAdd me to another server: \n**[Click me!](${botInfo.botInviteUrl})**`
)
.setColor(embedColors.colorInfo)
]
Expand Down
3 changes: 2 additions & 1 deletion config.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"maxHistorySize": 100
},
"progressBarOptions": {
"length": 12,
"length": 14,
"timecodes": false,
"separator": "┃",
"indicator": "🔘",
Expand All @@ -37,6 +37,7 @@
},
"embedIcons": {
"beta": "`beta`",
"new": "`new`",
"rule": "📒",
"support": "❓",
"bot": "🤖"
Expand Down

0 comments on commit 923697c

Please sign in to comment.