Commands

In this page you can find all the commands available

circle-exclamation

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

triangle-exclamation

Balance Command

Reset all command

Leaderboard command

Add money command

triangle-exclamation

Blackjack command

Voice Tracker

triangle-exclamation
triangle-exclamation

Time command

Voice leaderboard command

More command coming soon...

Last updated