added help and say commands
This commit is contained in:
parent
66e3d8c2d2
commit
ae1f1eac43
3 changed files with 97 additions and 0 deletions
56
server.js
Normal file
56
server.js
Normal file
|
@ -0,0 +1,56 @@
|
|||
const fs = require('fs')
|
||||
const Discord = require('discord.js');
|
||||
const client = new Discord.Client({ disableEveryone: true });
|
||||
const {
|
||||
prefix,
|
||||
token,
|
||||
} = require('./config.json');
|
||||
|
||||
client.commands = new Discord.Collection();
|
||||
|
||||
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
|
||||
|
||||
for (const file of commandFiles) {
|
||||
const command = require(`./commands/${file}`);
|
||||
client.commands.set(command.name, command);
|
||||
}
|
||||
|
||||
console.log(client.commands);
|
||||
|
||||
client.once('ready', () => {
|
||||
console.log('Ready!');
|
||||
});
|
||||
|
||||
client.once('reconnecting', () => {
|
||||
console.log('Reconnecting!');
|
||||
});
|
||||
|
||||
client.once('disconnect', () => {
|
||||
console.log('Disconnect!');
|
||||
});
|
||||
|
||||
client.on('message', async message => {
|
||||
const args = message.content.slice(prefix.length).split(" ")
|
||||
const commandName = args.shift().toLowerCase();
|
||||
const command = client.commands.get(commandName);
|
||||
|
||||
if (message.author.bot) return;
|
||||
if (!message.content.startsWith(prefix)) return;
|
||||
|
||||
try {
|
||||
if (commandName == "ban" || commandName == "userinfo") {
|
||||
command.execute(message, client);
|
||||
} else if (commandName == "say") {
|
||||
command.execute(message, args.join(" "))
|
||||
}
|
||||
else {
|
||||
command.execute(message);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
message.reply('There was an error trying to execute that command!');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
client.login(token);
|
Loading…
Add table
Add a link
Reference in a new issue