This repository was archived by the owner on Dec 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.js
79 lines (65 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const Discord = require('discord.js');
const fs = require('fs');
const funcs = require('./funcs.js');
const MessageHandler = require('./core/messageHandler.js');
const Command = require('./core/command.js');
const config = require("./config/config.js");
const globalConfig = config.globalConfig();
const bot = new Discord.Client();
const messageHandler = new MessageHandler(bot);
bot.on("guildMemberAdd", async member => {
let guildConfig = await config.globalConfig(member.guild).load();
let channel = member.guild.channels.get(guildConfig.greet_channel);
if (channel)
{
channel.send("Welcome to the server " + member.user.tag + ". We hope you enjoy yourself!");
}
});
bot.on("guildMemberRemove", async member => {
let guildConfig = await config.globalConfig(member.guild).load();
let channel = member.guild.channels.get(guildConfig.greet_channel);
if (channel)
{
channel.send("Goodbye " + member.user.tag + ". We hope you enjoyed your time here!");
}
});
bot.on('ready', async () =>
{
console.log("Bot is ready.");
console.log(`Logged in as ${bot.user.tag}.`);
await bot.user.setGame(`Type ${globalConfig.prefix}help to get started.`);
});
bot.on('message', async msg =>
{
if (msg.author.id === bot.user.id)
{
return; // Never respond to ourself.
}
try
{
await messageHandler.runMessage(msg);
}
catch(err)
{
let id = funcs.randInt(0, 999999999999);
let guild = msg.guild ? msg.guild.name : "DM";
let date = new Date();
let dateString = `${date.getDate()} / ${date.getMonth()} / ${date.getFullYear()}`;
let report = `\n-Error occurred in ${guild}, at ${dateString} with ID: ${id}-\n${err}\n`;
msg.channel.send(`Whoops! Something went wrong executing your command. This has been logged. ID: ${id}`);
fs.appendFile("./log.txt", report, console.error);
console.error(err);
}
});
// Add all the commands from the commands folder to the message handler's command list.
new Command.Loader(messageHandler.commands).addDirectory('./Commands');
bot.login(globalConfig.token)
.then(() => {
// All good to go.
console.log("Available command(s): ");
for (const command of messageHandler.commands)
{
console.log(` ${command[0]}`);
}
})
.catch(console.error);