diff options
| -rw-r--r-- | commands/Fun/balance.js | 4 | ||||
| -rw-r--r-- | commands/Fun/jobs.js | 8 | ||||
| -rw-r--r-- | commands/Fun/slots.js | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/commands/Fun/balance.js b/commands/Fun/balance.js index afe094e..fd387bc 100644 --- a/commands/Fun/balance.js +++ b/commands/Fun/balance.js @@ -9,11 +9,11 @@ exports.run = async (bot, msg) => { const credits = await bot.plugins.economy.get(msg.author.id); - msg.reply(credits + ' credits'); + msg.reply(credits + ' PokeCoins'); }; exports.conf = { - aliases: ['bal', 'money', 'credits'], + aliases: ['bal', 'money', 'coins'], guildOnly: true, }; diff --git a/commands/Fun/jobs.js b/commands/Fun/jobs.js index f71ba28..3d42fdf 100644 --- a/commands/Fun/jobs.js +++ b/commands/Fun/jobs.js @@ -13,9 +13,9 @@ exports.run = (bot, msg) => { const jobs = [ "started a BitCoin farm", - "pissed for an elderly woman", + "crashed an airplane", "became a doctor and illegally sold organs", - "extracted eggs from elderly women", + "stole Blake Australia's fame and made a lot of money", "became a bus driver", "started working for Universe Dev Group", "programmed a Discord bot", @@ -28,12 +28,12 @@ exports.run = (bot, msg) => { if (bot.dbl.hasVoted(msg.author.id)) { var creditsEarned = Math.floor(Math.random() * 650); bot.plugins.economy.add(msg.author.id, creditsEarned); - msg.channel.send('You worked and ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.'); + msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.'); } else { var creditsEarned = Math.floor(Math.random() * 250); bot.plugins.economy.add(msg.author.id, creditsEarned); - msg.channel.send('You worked and ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.'); + msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.'); } cooldown.add(msg.author.id); setTimeout(() => { diff --git a/commands/Fun/slots.js b/commands/Fun/slots.js index ddd6757..0fe5af9 100644 --- a/commands/Fun/slots.js +++ b/commands/Fun/slots.js @@ -31,12 +31,12 @@ 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 1000 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3)); + return await msg.channel.send('You won 1000 PokeCoins!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3)); } else if (number2 == number3 - 1 && number1 == number2 - 1) { 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 1500 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3)); + return await msg.channel.send('You won 1500 PokeCoins!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3)); } else { await bot.plugins.economy.subtract(msg.author.id, 10); |
