-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
52 lines (43 loc) · 1.5 KB
/
bot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
require("dotenv").config()
const fs = require('fs')
const Discord = require("discord.js")
const client = new Discord.Client()
const { prefix, channelid, funtranslations } = require('./config.json')
client.commands = new Discord.Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
var quiz = {
duel: false,
isgoingon: false,
participant1: "",
participant2: "",
questions: [],
answers: [],
scoreboard: [0, 0],
answered: [false, false, false]
}
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
}
client.on("ready", () => {
console.log(`Logged in as ${client.user.tag}!`);
})
client.on("message", gotMessage)
function gotMessage(msg) {
if(!msg.content.startsWith(prefix) || msg.author.bot) return;
const args = msg.content.slice(prefix.length).trim().split(/ +/);
const commandName = args.shift().toLowerCase();
if(msg.channel.id == channelid || msg.channel.id == funtranslations) {
if(!client.commands.has(commandName)){
return msg.channel.send(`${commandName} command not found\nUse \`!help\` for help`);
}
const command = client.commands.get(commandName);
try {
command.execute(msg, args, quiz);
} catch(error) {
console.error(error);
msg.channel.send('there was an error trying to execute that command!');
}
}
}
client.login(process.env.TOKEN)