49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
|
const { Client, Message, MessageEmbed } = require("discord.js");
|
||
|
module.exports = {
|
||
|
name: "gamble",
|
||
|
aliases: ["bet"],
|
||
|
usage: "(Number)",
|
||
|
timeout: 5000,
|
||
|
description: "Win double amount of coins or lose all coins",
|
||
|
category: "Economy",
|
||
|
/**
|
||
|
* @param {Client} client
|
||
|
* @param {Message} message
|
||
|
* @param {String[]} args
|
||
|
*/
|
||
|
run: async (client, message, args) => {
|
||
|
const max = 1000000;
|
||
|
if (!args[0]) {
|
||
|
return client.err(message, "Economy", "gamble", 5);
|
||
|
}
|
||
|
if (isNaN(args[0])) {
|
||
|
return client.err(message, "Economy", "gamble", 7);
|
||
|
}
|
||
|
const amt = parseInt(args[0]);
|
||
|
if ((await client.data.bal(message.author.id)) < amt) {
|
||
|
return client.err(message, "Economy", "gamble", 20);
|
||
|
}
|
||
|
if (amt > max) {
|
||
|
return client.err(message, "Economy", "gamble", 101);
|
||
|
}
|
||
|
if (client.function.random() === true) {
|
||
|
const winamt = amt * 1;
|
||
|
await client.data.add(message.author.id, winamt);
|
||
|
const abc = new MessageEmbed()
|
||
|
.setColor("GREEN")
|
||
|
.setTimestamp()
|
||
|
.setTitle(`${message.author.username} wins a gamble game`)
|
||
|
.setDescription(`You win\n**${winamt}**${client.currency}`);
|
||
|
message.inlineReply(abc);
|
||
|
} else {
|
||
|
await client.data.rmv(message.author.id, amt);
|
||
|
const cba = new MessageEmbed()
|
||
|
.setColor("RED")
|
||
|
.setTimestamp()
|
||
|
.setTitle(`${message.author.username} loses a gamble game`)
|
||
|
.setDescription(`You lost\n**${amt}**${client.currency}`);
|
||
|
message.inlineReply(cba);
|
||
|
}
|
||
|
},
|
||
|
};
|