(FIXED) Powerful game addon for Discord Economy Super
npm install des-games-superJS
$ npm install des-games-super
`
Features
* Simple & easy to use 👍
* Beginner friendly 😄
* Module base support 📃
Module Managers
- 'UtilsManager' - Manager that enables module Utils.
Module Constructor Options
- 'options.fishConfig.cooldown' - Property responsible for the amount of time between games.
- 'options.fishConfig.maxAmount' - Property responsible for the maximum amount of rewards for the game.
- 'options.huntConfig.cooldown' - Property responsible for the amount of time between games.
- 'options.huntConfig.maxAmount' - Property responsible for the maximum amount of rewards for the game.
Quick Initialization Example
`JS
const Discord = require('discord.js');
const client = new Discord.Client();
const Economy = require('discord-economy-super');
const eco = new Economy();
const EconomyGames = require('des-games-super');
const games = new EconomyGames(eco);
client.on('ready', () => {
console.log('Bot started!');
})
client.login('YOUR_BOT_TOKEN_HERE');
``