mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-12 08:03:09 -04:00
big help upgrades
- short descriptions for command list - argument descriptions - render argument list on detailed help page
This commit is contained in:
parent
5e5a738b74
commit
f9c627ada1
55 changed files with 114 additions and 30 deletions
|
@ -37,6 +37,7 @@ module.exports = {
|
|||
aliases: ['ai'],
|
||||
metadata: {
|
||||
description: 'Displays information about a discord application.',
|
||||
description_short: 'Discord application information',
|
||||
examples: ['ai 682654466453012553'],
|
||||
category: 'info',
|
||||
usage: 'appinfo <application id>'
|
||||
|
|
|
@ -8,9 +8,10 @@ module.exports = {
|
|||
aliases: ['a'],
|
||||
metadata: {
|
||||
description: 'Displays someones discord avatar. Accepts IDs, Mentions, or Usernames.',
|
||||
description_short: 'User avatar',
|
||||
examples: ['avatar labsCore'],
|
||||
category: 'info',
|
||||
usage: 'avatar [<id|user>]'
|
||||
usage: 'avatar [<user>]'
|
||||
},
|
||||
run: async (context, args) => {
|
||||
context.triggerTyping();
|
||||
|
|
|
@ -9,6 +9,7 @@ module.exports = {
|
|||
aliases: ['guild', 'guildinfo'],
|
||||
metadata: {
|
||||
description: 'Displays information about the server.',
|
||||
description_short: 'Server information',
|
||||
examples: ['guild'],
|
||||
category: 'info',
|
||||
usage: 'server'
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = {
|
|||
aliases: ["guildicon","gi","si","groupicon"],
|
||||
metadata: {
|
||||
description: 'Displays the server icon.',
|
||||
description_short: 'Server Icon',
|
||||
examples: ['gi'],
|
||||
category: 'info',
|
||||
usage: 'guildicon'
|
||||
|
|
|
@ -9,6 +9,7 @@ module.exports = {
|
|||
aliases: ['inviteinfo'],
|
||||
metadata: {
|
||||
description: 'Displays information about a discord invite code.',
|
||||
description_short: 'Invite link information',
|
||||
examples: ['invite discord-townhall'],
|
||||
category: 'info',
|
||||
usage: 'invite <invite code>'
|
||||
|
|
|
@ -12,9 +12,10 @@ module.exports = {
|
|||
aliases: ['u', 'profile'],
|
||||
metadata: {
|
||||
description: 'Displays information about a discord user. Accepts IDs, Mentions and Usernames.',
|
||||
description_short: 'User information',
|
||||
examples: ['user labsCore'],
|
||||
category: 'info',
|
||||
usage: 'user [<id|user>]'
|
||||
usage: 'user [<user>]'
|
||||
},
|
||||
run: async (context, args) => {
|
||||
context.triggerTyping();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue