inventory clear command/fix settings prompts?
This commit is contained in:
2 files changed
+98
-17
No files matched your search
+60
-1
@@ -1,4 +1,4 @@
|
|||||||
const { MessageEmbed } = require('discord.js');
|
const { MessageEmbed, MessageActionRow, MessageButton } = require('discord.js');
|
||||||
const Inventory = require('../structures/inventory');
|
const Inventory = require('../structures/inventory');
|
||||||
|
|
||||||
const action = ['ditch', 'drop', 'forget', 'throw out', 'leave', 'set down', 'let go of'];
|
const action = ['ditch', 'drop', 'forget', 'throw out', 'leave', 'set down', 'let go of'];
|
||||||
@@ -78,6 +78,12 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "clear",
|
||||||
|
description: "clear your inventory",
|
||||||
|
value: "clear",
|
||||||
|
type: 1,
|
||||||
|
}
|
||||||
],
|
],
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@@ -306,6 +312,59 @@ module.exports = {
|
|||||||
.setColor('GREEN');
|
.setColor('GREEN');
|
||||||
|
|
||||||
return interaction.send({ embeds: [successEmbed] });
|
return interaction.send({ embeds: [successEmbed] });
|
||||||
|
|
||||||
|
} else if (args[0].name == 'clear') {
|
||||||
|
const prompt = new MessageEmbed()
|
||||||
|
.setTitle(`Are you sure you want to clear your inventory?`)
|
||||||
|
.setDescription('**Note:** This will not affect your wallet.')
|
||||||
|
.setColor(client.config.EmbedColor)
|
||||||
|
|
||||||
|
const opt = new MessageActionRow()
|
||||||
|
.addComponents(
|
||||||
|
new MessageButton()
|
||||||
|
.setCustomId(`yes-${interaction.member.user.id}`)
|
||||||
|
.setLabel("Yes")
|
||||||
|
.setStyle("DANGER"),
|
||||||
|
new MessageButton()
|
||||||
|
.setCustomId(`no-${interaction.member.user.id}`)
|
||||||
|
.setLabel("No")
|
||||||
|
.setStyle("SUCCESS")
|
||||||
|
)
|
||||||
|
|
||||||
|
interaction.send({ embeds: [prompt], components: [opt] });
|
||||||
|
|
||||||
|
client.on("interactionCreate", ButtonInteraction => {
|
||||||
|
if(!ButtonInteraction.isButton()) return;
|
||||||
|
const queryString = ButtonInteraction.customId;
|
||||||
|
if (!queryString.endsWith(ButtonInteraction.member.user.id)) {
|
||||||
|
return ButtonInteraction.reply({
|
||||||
|
content: "This button is not for you",
|
||||||
|
ephemeral: true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
let action = ''
|
||||||
|
if (queryString==`yes-${interaction.member.user.id}`) {
|
||||||
|
action = 'cleared';
|
||||||
|
const tempWallet = inventory.items[0];
|
||||||
|
client.dbo.collection("inventories").updateOne({"inventory.userID":inventory.userID},{$set:{"inventory.items": [tempWallet]}},function(err, res) {
|
||||||
|
if (err) {
|
||||||
|
client.log(err);
|
||||||
|
const embed = new MessageEmbed()
|
||||||
|
.setDescriptions(`**Internal Error:** ${err}\nContact the Developers`)
|
||||||
|
.setColor("RED")
|
||||||
|
|
||||||
|
return interaction.send({ embeds: [embed] });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else if (queryString==`no-${interaction.member.user.id}`) action = 'kept';
|
||||||
|
|
||||||
|
const successEmbed = new MessageEmbed()
|
||||||
|
.setColor("GREEN")
|
||||||
|
.setTitle(`Successfully ${action} your inventory.`)
|
||||||
|
|
||||||
|
return ButtonInteraction.update({ embeds: [successEmbed], components: [] });
|
||||||
|
});
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
+38
-16
@@ -1,4 +1,4 @@
|
|||||||
const { MessageEmbed, Guild } = require('discord.js');
|
const { MessageEmbed, MessageActionRow, MessageButton } = require('discord.js');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: "settings",
|
name: "settings",
|
||||||
@@ -211,21 +211,28 @@ module.exports = {
|
|||||||
const opt = new MessageActionRow()
|
const opt = new MessageActionRow()
|
||||||
.addComponents(
|
.addComponents(
|
||||||
new MessageButton()
|
new MessageButton()
|
||||||
.setCustomId(`yes`)
|
.setCustomId(`yes-${interaction.member.user.id}`)
|
||||||
.setLabel("Yes")
|
.setLabel("Yes")
|
||||||
.setStyle("DANGER"),
|
.setStyle("DANGER"),
|
||||||
new MessageButton()
|
new MessageButton()
|
||||||
.setCustomId(`no`)
|
.setCustomId(`no-${interaction.member.user.id}`)
|
||||||
.setLabel("No")
|
.setLabel("No")
|
||||||
.setStyle("SUCCESS")
|
.setStyle("SUCCESS")
|
||||||
)
|
)
|
||||||
|
|
||||||
interaction.send({ embeds: [prompt], components: [opt] });
|
interaction.send({ embeds: [prompt], components: [opt] });
|
||||||
|
|
||||||
client.once("interactionCreate", ButtonInteraction => {
|
client.on("interactionCreate", ButtonInteraction => {
|
||||||
|
if(!ButtonInteraction.isButton()) return;
|
||||||
const queryString = ButtonInteraction.customId;
|
const queryString = ButtonInteraction.customId;
|
||||||
|
if (!queryString.endsWith(ButtonInteraction.member.user.id)) {
|
||||||
|
return ButtonInteraction.reply({
|
||||||
|
content: "This button is not for you",
|
||||||
|
ephemeral: true
|
||||||
|
})
|
||||||
|
}
|
||||||
let action = ''
|
let action = ''
|
||||||
if (queryString=='yes') {
|
if (queryString==`yes-${interaction.member.user.id}`) {
|
||||||
action = 'removed';
|
action = 'removed';
|
||||||
client.dbo.collection("guilds").updateOne({"server.serverID":GuildDB.serverID}, {$pull:{"server.allowedChannels": channelid}}, function (err, res) {
|
client.dbo.collection("guilds").updateOne({"server.serverID":GuildDB.serverID}, {$pull:{"server.allowedChannels": channelid}}, function (err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@@ -237,7 +244,7 @@ module.exports = {
|
|||||||
return interaction.send({ embeds: [embed] });
|
return interaction.send({ embeds: [embed] });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else if (queryString=='no') action = 'kept';
|
} else if (queryString==`no-${interaction.member.user.id}`) action = 'kept';
|
||||||
|
|
||||||
const successEmbed = new MessageEmbed()
|
const successEmbed = new MessageEmbed()
|
||||||
.setColor("GREEN")
|
.setColor("GREEN")
|
||||||
@@ -284,21 +291,28 @@ module.exports = {
|
|||||||
const opt = new MessageActionRow()
|
const opt = new MessageActionRow()
|
||||||
.addComponents(
|
.addComponents(
|
||||||
new MessageButton()
|
new MessageButton()
|
||||||
.setCustomId(`yes`)
|
.setCustomId(`yes-${interaction.member.user.id}`)
|
||||||
.setLabel("Yes")
|
.setLabel("Yes")
|
||||||
.setStyle("DANGER"),
|
.setStyle("DANGER"),
|
||||||
new MessageButton()
|
new MessageButton()
|
||||||
.setCustomId(`no`)
|
.setCustomId(`no-${interaction.member.user.id}`)
|
||||||
.setLabel("No")
|
.setLabel("No")
|
||||||
.setStyle("SUCCESS")
|
.setStyle("SUCCESS")
|
||||||
)
|
)
|
||||||
|
|
||||||
interaction.send({ embeds: [prompt], components: [opt] });
|
interaction.send({ embeds: [prompt], components: [opt] });
|
||||||
|
|
||||||
client.once("interactionCreate", ButtonInteraction => {
|
client.on("interactionCreate", ButtonInteraction => {
|
||||||
|
if(!ButtonInteraction.isButton()) return;
|
||||||
const queryString = ButtonInteraction.customId;
|
const queryString = ButtonInteraction.customId;
|
||||||
|
if (!queryString.endsWith(ButtonInteraction.member.user.id)) {
|
||||||
|
return ButtonInteraction.reply({
|
||||||
|
content: "This button is not for you",
|
||||||
|
ephemeral: true
|
||||||
|
})
|
||||||
|
}
|
||||||
let action = ''
|
let action = ''
|
||||||
if (queryString=='yes') {
|
if (queryString==`yes-${interaction.member.user.id}`) {
|
||||||
action = 'removed';
|
action = 'removed';
|
||||||
client.dbo.collection("guilds").updateOne({"server.serverID":ButtonInteraction.guild.id},{$set:{"server.actionChannel": null}},function(err, res) {
|
client.dbo.collection("guilds").updateOne({"server.serverID":ButtonInteraction.guild.id},{$set:{"server.actionChannel": null}},function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@@ -310,7 +324,7 @@ module.exports = {
|
|||||||
return interaction.send({ embeds: [embed] });
|
return interaction.send({ embeds: [embed] });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else if (queryString=='no') action = 'kept';
|
} else if (queryString==`no-${interaction.member.user.id}`) action = 'kept';
|
||||||
|
|
||||||
const successEmbed = new MessageEmbed()
|
const successEmbed = new MessageEmbed()
|
||||||
.setColor("GREEN")
|
.setColor("GREEN")
|
||||||
@@ -357,21 +371,28 @@ module.exports = {
|
|||||||
const opt = new MessageActionRow()
|
const opt = new MessageActionRow()
|
||||||
.addComponents(
|
.addComponents(
|
||||||
new MessageButton()
|
new MessageButton()
|
||||||
.setCustomId(`yes`)
|
.setCustomId(`yes-${interaction.member.user.id}`)
|
||||||
.setLabel("Yes")
|
.setLabel("Yes")
|
||||||
.setStyle("DANGER"),
|
.setStyle("DANGER"),
|
||||||
new MessageButton()
|
new MessageButton()
|
||||||
.setCustomId(`no`)
|
.setCustomId(`no-${interaction.member.user.id}`)
|
||||||
.setLabel("No")
|
.setLabel("No")
|
||||||
.setStyle("SUCCESS")
|
.setStyle("SUCCESS")
|
||||||
)
|
)
|
||||||
|
|
||||||
interaction.send({ embeds: [prompt], components: [opt] });
|
interaction.send({ embeds: [prompt], components: [opt] });
|
||||||
|
|
||||||
client.once("interactionCreate", ButtonInteraction => {
|
client.on("interactionCreate", ButtonInteraction => {
|
||||||
|
if(!ButtonInteraction.isButton()) return;
|
||||||
const queryString = ButtonInteraction.customId;
|
const queryString = ButtonInteraction.customId;
|
||||||
|
if (!queryString.endsWith(ButtonInteraction.member.user.id)) {
|
||||||
|
return ButtonInteraction.reply({
|
||||||
|
content: "This button is not for you",
|
||||||
|
ephemeral: true
|
||||||
|
})
|
||||||
|
}
|
||||||
let action = ''
|
let action = ''
|
||||||
if (queryString=='yes') {
|
if (queryString==`yes-${interaction.member.user.id}`) {
|
||||||
action = 'removed';
|
action = 'removed';
|
||||||
client.dbo.collection("guilds").updateOne({"server.serverID":ButtonInteraction.guild.id},{$set:{"server.tweetChannel": null}},function(err, res) {
|
client.dbo.collection("guilds").updateOne({"server.serverID":ButtonInteraction.guild.id},{$set:{"server.tweetChannel": null}},function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@@ -383,7 +404,7 @@ module.exports = {
|
|||||||
return interaction.send({ embeds: [embed] });
|
return interaction.send({ embeds: [embed] });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else if (queryString=='no') action = 'kept';
|
} else if (queryString==`no-${interaction.member.user.id}`) action = 'kept';
|
||||||
|
|
||||||
const successEmbed = new MessageEmbed()
|
const successEmbed = new MessageEmbed()
|
||||||
.setColor("GREEN")
|
.setColor("GREEN")
|
||||||
@@ -411,6 +432,7 @@ module.exports = {
|
|||||||
.setDescription(`Successfully set $${args[0].options[0].value.toFixed(2)} as starting balance`);
|
.setDescription(`Successfully set $${args[0].options[0].value.toFixed(2)} as starting balance`);
|
||||||
|
|
||||||
return interaction.send({ embeds: [successEmbed] });
|
return interaction.send({ embeds: [successEmbed] });
|
||||||
|
|
||||||
} else if (args[0].name == 'set_income_role') {
|
} else if (args[0].name == 'set_income_role') {
|
||||||
if (args[0].options[1].value <= 0) {
|
if (args[0].options[1].value <= 0) {
|
||||||
let embed = new MessageEmbed()
|
let embed = new MessageEmbed()
|
||||||
|
|||||||
Reference in new issue
Block a user