aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/slots.js
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-03-18 21:15:59 -0400
committerUnknown <jtsshieh@outlook.com>2018-03-18 21:15:59 -0400
commit2c604012f8dc20787c73d6d6d5c11fc933070347 (patch)
tree090ea5eaada5d87324048088e8b3e58c484ec3d9 /commands/Fun/slots.js
parent63a779273661f95b461b10516db25fde5cb2aaab (diff)
downloadPokeBot-2c604012f8dc20787c73d6d6d5c11fc933070347.tar.gz
PokeBot-2c604012f8dc20787c73d6d6d5c11fc933070347.tar.bz2
PokeBot-2c604012f8dc20787c73d6d6d5c11fc933070347.zip
moeny
Diffstat (limited to 'commands/Fun/slots.js')
-rw-r--r--commands/Fun/slots.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/commands/Fun/slots.js b/commands/Fun/slots.js
index 303dd02..223ebb6 100644
--- a/commands/Fun/slots.js
+++ b/commands/Fun/slots.js
@@ -40,13 +40,14 @@ exports.run = async (bot, msg) => {
if (number2 == number1 + 1 && number3 == number2 + 1) {
+ await bot.plugins.economy.add(msg.author.id, 1000);
const balance = await bot.plugins.economy.get(msg.author.id);
- return await msg.channel.send('You won 10 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1000 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else if (number2 == number3 - 1 && 1 == number2 - 1) {
- await bot.plugins.economy.add(msg.author.id, 15);
+ await bot.plugins.economy.add(msg.author.id, 1500);
const balance = await bot.plugins.economy.get(msg.author.id);
- return await msg.channel.send('You won 15 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1500 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else {
await bot.plugins.economy.subtract(msg.author.id, 10);