✨ gift reason
This commit is contained in:
parent
b57794e5a1
commit
5cf3138c53
2 changed files with 5 additions and 3 deletions
|
@ -9,6 +9,7 @@ module.exports = async (interaction) => {
|
||||||
try {
|
try {
|
||||||
const user = await interaction.options.getUser('user');
|
const user = await interaction.options.getUser('user');
|
||||||
const amount = await interaction.options.getInteger('amount');
|
const amount = await interaction.options.getInteger('amount');
|
||||||
|
const reason = await interaction.options.getString('reason');
|
||||||
const data = await credits.findOne({ userId: interaction.user.id, guildId: interaction.member.guild.id });
|
const data = await credits.findOne({ userId: interaction.user.id, guildId: interaction.member.guild.id });
|
||||||
|
|
||||||
if (user.id === interaction.user.id) {
|
if (user.id === interaction.user.id) {
|
||||||
|
@ -62,7 +63,7 @@ module.exports = async (interaction) => {
|
||||||
|
|
||||||
const interactionEmbed = {
|
const interactionEmbed = {
|
||||||
title: 'Gift',
|
title: 'Gift',
|
||||||
description: `You sent ${creditNoun(amount)} to ${user}. Your new balance is ${creditNoun(
|
description: `You sent ${creditNoun(amount)} to ${user}${reason ? ` with reason: ${reason}` : ''}. Your new balance is ${creditNoun(
|
||||||
fromUser.balance,
|
fromUser.balance,
|
||||||
)}.`,
|
)}.`,
|
||||||
color: 0x22bb33,
|
color: 0x22bb33,
|
||||||
|
@ -71,7 +72,7 @@ module.exports = async (interaction) => {
|
||||||
};
|
};
|
||||||
const dmEmbed = {
|
const dmEmbed = {
|
||||||
title: 'Gift',
|
title: 'Gift',
|
||||||
description: `You recieved ${creditNoun(amount)} from ${interaction.user}. Your new balance is ${creditNoun(
|
description: `You recieved ${creditNoun(amount)} from ${interaction.user}${reason ? ` with reason: ${reason}` : ''}. Your new balance is ${creditNoun(
|
||||||
toUser.balance,
|
toUser.balance,
|
||||||
)}.`,
|
)}.`,
|
||||||
color: 0x22bb33,
|
color: 0x22bb33,
|
||||||
|
|
|
@ -52,7 +52,8 @@ module.exports = {
|
||||||
.setName('gift')
|
.setName('gift')
|
||||||
.setDescription('Gift someone credits from your credits.')
|
.setDescription('Gift someone credits from your credits.')
|
||||||
.addUserOption((option) => option.setName('user').setDescription('The user you want to pay.').setRequired(true))
|
.addUserOption((option) => option.setName('user').setDescription('The user you want to pay.').setRequired(true))
|
||||||
.addIntegerOption((option) => option.setName('amount').setDescription('The amount you will pay.').setRequired(true)))
|
.addIntegerOption((option) => option.setName('amount').setDescription('The amount you will pay.').setRequired(true))
|
||||||
|
.addStringOption((option) => option.setName('reason').setDescription('Your reason.')))
|
||||||
.addSubcommand((subcommand) => subcommand.setName('top').setDescription('Check the top balance.'))
|
.addSubcommand((subcommand) => subcommand.setName('top').setDescription('Check the top balance.'))
|
||||||
.addSubcommand((subcommand) => subcommand
|
.addSubcommand((subcommand) => subcommand
|
||||||
.setName('transfer')
|
.setName('transfer')
|
||||||
|
|
Loading…
Add table
Reference in a new issue