blob: c1a5c4f15044607ed405abc70952843b6a3c2b75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/** **************************************
*
* Balance: Plugin for Galaxy that monitors economy features.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0
*
* *************************************/
exports.run = async (bot, msg) => {
const credits = await bot.plugins.economy.get(msg.author.id);
msg.reply(credits + ' atoms');
};
exports.conf = {
aliases: ['bal', 'money', 'coins'],
guildOnly: true,
};
exports.help = {
name: 'balance',
description: 'Check your balance!',
};
|