Commands
In this page you can find all the commands available
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?
Command list
Economy
Balance Command
Reset all command
Leaderboard command
Add money command
Voice Tracker
Time command
Voice leaderboard command
More command coming soon...
Last updated