Hey! This module was created for economics on Discord. If you are unfamiliar with databases or want to save some time, this module is for you!
You can start by installing this npm:
npm install discord-simple-economy --save
Easy and fast. Data is saved to a sqlite3 or mongodb database using quick-db. Economiy is divided into wallet and bank balance, so you have more room to act!
Discord.js economy system has never been so easy to use before.
discord-simple-economy supports activities such as add, set, get, subtract, reset, delete, with, dep and daily! (with, dep, reset and delete not in there already in v2.0.0
...)
To start, you need to select a driver and create a economy client with this module. It is not difficult. Example:
const Discord = require('discord.js');
const eco = require('discord-simple-economy');
const client = new Discord.Client();
(async () => {
await eco.selectDriver("sqlite");
})(); // see 'Selecting a driver' later in this document
client.on('message', async (message) => {
const ecoClient = new eco.guildUser(message.author, message.guild);
//eco stuff with ecoClient with author and guild :]
});
client.login("token");
- Note: you can use
message.author.id
instead ofmessage.author
inmember
andmessage.guild.id
instead ofmessage.guild
inguild
METHOD | WALLET | BANK |
---|---|---|
add | ecoClient.add(amount, "wallet") |
ecoClient.add(amount, "bank") |
set | ecoClient.set(amount, "wallet") |
ecoClient.set(amount, "bank") |
subtract | ecoClient.subtract(amount, "wallet") |
ecoClient.subtract(amount, "bank") |
get | ecoClient.get("wallet") |
ecoClient.get("bank") |
daily | ecoClient.daily(amount, "wallet") |
ecoClient.daily(amount, "bank") |
- amount should be an number
METHOD | USAGE |
---|---|
randomNumber | eco.randomNumber(minNumber, maxNumber) |
selectDriver | eco.selectDriver(driver, options) |
all | ecoClient.all() |
lb | ecoClient.lb(type) |
Please note:
randomNumber
andselectDriver
can be used only witheco
, no withecoClient
- To use
selectDriver
, see 'Selecting a driver' later in this document- The
all()
method returns all guild data (cash and daily stuff)
async function add(message, amount, type){
await ecoClient.add(amount, type);
const amountNow = await ecoClient.get(type);
message.reply(`You have now **${amountNow}** in *${type}*!`);
}
add(message, 100, "bank");
async function all() {
const allGuildData = await ecoClient.all();
/*
returns:
{
"cash": guildUsersCashData,
"daily": guildUsersDailyData
}
*/
console.log(allGuildData);
}
all();
async function lb() {
const lb = await ecoClient.lb('wallet');
/*
returns sorted Array with leaderboard (if type is not provided or type=null, it's sorting by both wallet and bank values).
[
{
user: 'id',
cash: 143423432
},
{
user: 'id',
cash: 45433
},
{
user: 'id',
cash: 4353
}
]
*/
console.log(lb);
}
lb();
async function collectDaily(message, type) {
const amount = eco.randomNumber(1,50);
const daily = await ecoClient.daily(amount, type);
if(daily.error == 'alreadyCollected')return message.reply("You have already collected your daily reward. Go back tommorow.");
message.reply(`Success. You have now **${amount}** more cash in *${type}*!`)
}
collectDaily(message);
async function get(message, type){
const amount = await ecoClient.get(type);
message.reply(`Your amount of *${type}* is **${amount}**.`);
}
get(message, "bank");
const randomNumber = eco.randomNumber(1,100);
async function set(message, amount, type){
await ecoClient.set(amount, type);
message.reply(`Success. Your amount of cash in *${type}* is now **${amount}**.`);
}
set(message, 60, "bank");
async function subtract(message, amount, type){
await ecoClient.subtract(amount, type);
const amountNow = await ecoClient.get(type);
message.reply(`Successfully subtracted **${amount}** from *${type}*. You have now *${amountNow}* left in there.`);
}
subtract(message, 10, "wallet");
Since 2.7.0, you need to select the driver used to store data, select mongodb or sqlite via selectDriver:
await eco.selectDriver("mongodb", { mongoUri: "mongodb://user:pass@localhost" }); //mongodb
await eco.selectDriver("sqlite") // sqlite
Notes:
selectDriver
is exposed directly, you don't need to call ecoClientselectDriver
is asynchronous
Join our Discord Support Server!