better help command & capitalize descriptions
This commit is contained in:
8 files changed
+84
-69
No files matched your search
+14
-14
@@ -3,8 +3,8 @@ const { MessageEmbed } = require('discord.js');
|
||||
module.exports = {
|
||||
name: "bank",
|
||||
debug: false,
|
||||
description: "manage your banking",
|
||||
usage: "[cmd] [amount]",
|
||||
description: "Manage your banking",
|
||||
usage: "[cmd] [opt]",
|
||||
permissions: {
|
||||
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
|
||||
member: [],
|
||||
@@ -13,12 +13,12 @@ module.exports = {
|
||||
options: [
|
||||
{
|
||||
name: "deposit",
|
||||
description: "deposit cash into your bank",
|
||||
description: "Deposit cash into your bank",
|
||||
value: "deposit",
|
||||
type: 1,
|
||||
options: [{
|
||||
name: "amount",
|
||||
description: "amount to deposit",
|
||||
description: "Amount to deposit",
|
||||
value: "amount",
|
||||
type: 10,
|
||||
min_value: 0.01,
|
||||
@@ -27,12 +27,12 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
name: "withdraw",
|
||||
description: "withdraw cash from you bank",
|
||||
description: "Withdraw cash from you bank",
|
||||
value: "deposit",
|
||||
type: 1,
|
||||
options: [{
|
||||
name: "amount",
|
||||
description: "amount to withdraw",
|
||||
description: "Amount to withdraw",
|
||||
value: "amount",
|
||||
type: 10,
|
||||
min_value: 0.01,
|
||||
@@ -41,12 +41,12 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
name: "balance",
|
||||
description: "view your bank balance and count your cash",
|
||||
description: "View your bank balance and count your cash",
|
||||
value: "balance",
|
||||
type: 1,
|
||||
options: [{
|
||||
name: "user",
|
||||
description: "user to view ballance",
|
||||
description: "User to view ballance",
|
||||
value: "user",
|
||||
type: 6,
|
||||
required: false,
|
||||
@@ -54,20 +54,20 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
name: "give",
|
||||
description: "give a user cash",
|
||||
description: "Give a user cash",
|
||||
value: "give",
|
||||
type: 1,
|
||||
options: [
|
||||
{
|
||||
name: "user",
|
||||
description: "user to give cash to",
|
||||
description: "User to give cash to",
|
||||
value: "user",
|
||||
type: 6,
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "amount",
|
||||
description: "the amount to give",
|
||||
description: "The amount to give",
|
||||
value: 1,
|
||||
type: 10,
|
||||
required: true,
|
||||
@@ -76,20 +76,20 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
name: "transfer",
|
||||
description: "transfer directly to users bank",
|
||||
description: "Transfer directly to users bank",
|
||||
value: "transfer",
|
||||
type: 1,
|
||||
options: [
|
||||
{
|
||||
name: "user",
|
||||
description: "user to transfer to",
|
||||
description: "User to transfer to",
|
||||
value: "user",
|
||||
type: 6,
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "amount",
|
||||
description: "the amount to transfer",
|
||||
description: "The amount to transfer",
|
||||
value: 1,
|
||||
type: 10,
|
||||
required: true,
|
||||
|
||||
Reference in new issue
Block a user