nyx/command/Economy/slots.js

96 lines
3.4 KiB
JavaScript
Raw Normal View History

const { MessageEmbed } = require("discord.js");
2021-06-12 12:53:51 +02:00
module.exports = {
name: "slots",
usage: "(Number)",
timeout: 5000,
description: "Win more coins by slots",
category: "Economy",
options: [
{
type: 10,
name: "cp",
description: "The number of CP you want to bet",
required: true,
},
],
run: async (client, interaction, args) => {
2021-06-12 12:53:51 +02:00
const max = 1000000;
const slots = [
2021-07-13 05:17:39 +02:00
"<:blushca:852174555513618502>",
"<:abusecat:853501068074942464>",
"<:dumbcat:855462498550415362>",
2021-06-12 12:53:51 +02:00
];
const slotOne = slots[Math.floor(Math.random() * slots.length)];
const slotTwo = slots[Math.floor(Math.random() * slots.length)];
const slotThree = slots[Math.floor(Math.random() * slots.length)];
const slotfour = slots[Math.floor(Math.random() * slots.length)];
const slotfive = slots[Math.floor(Math.random() * slots.length)];
const slotsix = slots[Math.floor(Math.random() * slots.length)];
const slotseven = slots[Math.floor(Math.random() * slots.length)];
const sloteight = slots[Math.floor(Math.random() * slots.length)];
const slotnine = slots[Math.floor(Math.random() * slots.length)];
const amt = args[0];
if (amt > max) return client.serr(interaction, "Economy", "bet", 101);
if ((await client.bal(interaction.user.id)) < amt) {
return client.serr(interaction, "Economy", "bet", 20);
2021-06-12 12:53:51 +02:00
}
if (
(slotOne === slotTwo && slotOne === slotThree) ||
(slotfour === slotfive && slotfour === slotsix) ||
(slotseven === sloteight && slotseven === slotnine)
) {
const winamt = Math.floor(Math.random() * 2 * amt);
await client.add(interaction.user.id, winamt, interaction);
await client.ADDSWin(interaction.user.id);
2021-06-12 12:53:51 +02:00
const won = new MessageEmbed()
.setColor("GREEN")
.setFooter(`Made by ${client.author}`)
.setTimestamp()
2021-06-12 12:53:51 +02:00
.addField(
"|-----|-----|----|",
`| ${slotfour} | ${slotfive} | ${slotsix} |`
)
.addField(
"|-----|-----|----|",
`| ${slotOne} | ${slotTwo} | ${slotThree} |`
)
.addField(
"|-----|-----|----|",
`| ${slotseven} | ${sloteight} | ${slotnine} |`
)
.setTitle(`${interaction.user.username} wins a slots game`)
2021-06-12 12:53:51 +02:00
.setDescription(
`You win\n**${winamt + amt}**${client.currency}\nYou now have **${
parseInt(await client.bal(interaction.user.id)) - amt
2021-06-12 12:53:51 +02:00
}**${client.currency}`
);
interaction.followUp({ embeds: [won] });
2021-06-12 12:53:51 +02:00
} else {
await client.rmv(interaction.user.id, amt);
2021-06-12 12:53:51 +02:00
const lost = new MessageEmbed()
.setColor("RED")
.setFooter(`Made by ${client.author}`)
.setTimestamp()
2021-06-12 12:53:51 +02:00
.addField(
"|-----|-----|----|",
`| ${slotfour} | ${slotfive} | ${slotsix} |`
)
.addField(
"|-----|-----|----|",
`| ${slotOne} | ${slotTwo} | ${slotThree} |`
)
.addField(
"|-----|-----|----|",
`| ${slotseven} | ${sloteight} | ${slotnine} |`
)
.setTitle(`${interaction.user.username} loses a slots game`)
2021-06-12 12:53:51 +02:00
.setDescription(
2021-06-24 09:53:19 +02:00
`You lost\n**${amt}**${client.currency}\nYou now have **${
parseInt(await client.bal(interaction.user.id)) - amt
2021-06-12 12:53:51 +02:00
}**${client.currency}`
);
interaction.followUp({ embeds: [lost] });
2021-06-12 12:53:51 +02:00
}
},
};