Commands
In this page you can find all the commands available
For this to work make sure to install discord.js
Basic Setup
const Discord = require('discord.js') //npm i discord.js
const client = new Discord.Client()
const prodigous = require('prodigous') //npm i prodigous
const prefix = "!"
client.on('ready', () => {
console.log(`logged in as ${client.user.username}`)
})
client.on('message', async(message) => {
const args = message.content.slice(prefix.length).trim().split(/ +/);
const command = args.shift().toLowerCase();
if(command === 'commandName') {
message.channel.send("working")
}
})
client.login("TOKEN")Have a advance command handler?
The function all works the same way just import the package on every file where you want to use the package
Command list
Economy
Before using any of these methods do the following:
Balance Command
Reset all command
Leaderboard command
Add money command
The following commands are still in Beta
Blackjack command
Voice Tracker
Before using any of these method do the following
These methods are still in beta so use it at your own risk
Time command
Voice leaderboard command
More command coming soon...
Last updated