aboutsummaryrefslogtreecommitdiff
path: root/bot.js
blob: fcc4a936de4b687e048d2f9a56cc9974a68c9ca6 (plain) (blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
const Discord = require('discord.js');
const moment = require('moment');
const client = new Discord.Client();
const config = require('./config.json');
const aqVersion = "1.0.1";
const log = message => {

    console.log(`[${moment().format('YYYY-MM-DD HH:mm:ss')}] ${message}`);

};

const SuggestQuoteStartMessage = "**Quote Suggestion**\n" +
    "Welcome to the quote suggestion process! Please read this before you continue.\n" +
    "Here's how this will work.\n\n" +
    "- I'll walk you through the process of creating a suggestion on the suggestions channel.\n" +
    "- Just respond to my prompts by typing a message in this DM and sending it.\n" +
    "- At any time, simply respond with `q` to cancel the suggestion.\n\n" +
    "However, please be aware of the following:\n" +
    "- Your Discord Username will be recorded and sent along with the suggestion.\n" +
    "- Your suggestion will be publicly visible.\n" +
    "- Any misuse of this command, including (but not limited to) spam will lead to appropriate discipline from staff.\n\n" +
    "**Here are some things not to suggest because they will be immediately declined.** This counts as misuse of the suggest command, so hit `q` now if you were going to suggest one of these.\n" +
    "- New text/voice channels.\n" +
    "- New bots.\n\n" +
    "Wait 30 seconds, and then respond with `y` if you understood the above.\n" +
    "Please note this feature doesn't work **yet**"
var QuoteOfTheDay;
var QuoteOfTheDayExpiry = 0;
var QuoteOfTheDayStartTime;
var DidReboot = false;

function GetQuoteOfTheDay(quoteNum = -1) {
    var now = new Date();

    if (QuoteOfTheDayExpiry < now.getTime()) {
        log("[!] Getting new quote of the day...");
        log("[!] This quote expires in 1 day.");

        QuoteOfTheDayStartTime = now;
        QuoteOfTheDayExpiry = now.getTime();
        QuoteOfTheDayExpiry += 86400000; //Add 8640000 milliseconds (24 hours) to the quote of the day

        QuoteOfTheDay = new Discord.RichEmbed();
        var author;
        var authorImage;
        var quote;
        var year;
        var url;

        if (quoteNum == -1) {
            quoteNum = Math.floor(Math.random() * 1000) % 35;
        }


        switch (quoteNum) {
            case 0:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = "A letter says a whole video!";
                year = "2017";
                url = "https://cdn.discordapp.com/attachments/278874966542385152/280566273992032258/Screenshot_20170213-160944.png";
                break;
            case 1:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = "I don't know why I found that \"ten gazillion\" thing so funny...";
                year = "2017";
                url = "https://www.youtube.com/watch?v=zzKGnuvX6IQ&t=37s";
                break;
            case 2:
                author = "AKidFromTheUK";
                authorImage = "https://yt3.ggpht.com/-yPaKdXkNVgw/AAAAAAAAAAI/AAAAAAAAAAA/mXqfMs0uVkU/s48-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "Listening to myself is quite awkward lmao";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 3:
                author = "Prince Hamlet: William Shakespeare";
                authorImage = "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Shakespeare.jpg/468px-Shakespeare.jpg";
                quote = "To be, or not to be, that is the question";
                year = "circa. 1600";
                url = "https://en.wikipedia.org/wiki/To_be,_or_not_to_be";
                break;
            case 4:
                author = "Diana Adams / Mitsubishi Mirage";
                authorImage = "https://yt3.ggpht.com/-tQLg1M-3org/AAAAAAAAAAI/AAAAAAAAAAA/-kkOvupMHXQ/s88-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "Dialing 000...\nNOOO!!!";
                year = "2017";
                url = "https://youtu.be/jDy57c7Y-4A?t=11m52s";
                break;
            case 5:
                author = "Diana Adams / Mitsubishi Mirage";
                authorImage = "https://yt3.ggpht.com/-tQLg1M-3org/AAAAAAAAAAI/AAAAAAAAAAA/-kkOvupMHXQ/s88-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "You'd have a crash by now!\nPardon?";
                year = "2017";
                url = "https://youtu.be/jDy57c7Y-4A?t=15m5s";
                break;
            case 6:
                author = "Ivoponop Pena";
                authorImage = "https://yt3.ggpht.com/-hZJxXIFsfB8/AAAAAAAAAAI/AAAAAAAAAAA/c_mjVjQWvTw/s48-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "i buy tablets for the bubble plastic";
                year = "2016";
                url = "https://www.youtube.com/watch?v=AqFDn0TxwH4";
                break;
            case 7:
                author = "The Mill on the Floss: George Eliot";
                authorImage = "https://upload.wikimedia.org/wikipedia/commons/8/81/George_Eliot_at_30_by_François_D%27Albert_Durade.jpg";
                quote = "Don't judge a book by its cover";
                year = "1860";
                url = "https://en.wikipedia.org/wiki/Don't_judge_a_book_by_its_cover";
                break;
            case 8:
                author = "tostoday";
                authorImage = "https://yt3.ggpht.com/-gNRclMiHzN4/AAAAAAAAAAI/AAAAAAAAAAA/BNEDEUakd4A/s48-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "I don't know why but Visopsys sounds like a medical condition";
                year = "circa. 2015";
                url = "https://www.youtube.com/watch?v=5T-vEZeY2v0";
                break;
            case 9:
                author = "Diana Adams";
                authorImage = "https://yt3.ggpht.com/-tQLg1M-3org/AAAAAAAAAAI/AAAAAAAAAAA/-kkOvupMHXQ/s88-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "4 × 1 000 000!? 4 000 000! It's not that hard...";
                year = "2014";
                url = "https://youtu.be/5T-vEZeY2v0?t=9m28s";
                break;
            case 10:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = "Yes! I'm not *just* a blue happy face!";
                year = "2016";
                url = "https://youtu.be/2E21oad5pWQ";
                break;
            case 11:
                author = "ItsDeckyah";
                authorImage = "https://yt3.ggpht.com/-t70ZI-25A1k/AAAAAAAAAAI/AAAAAAAAAAA/uGrVakleFIM/s48-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "Always remember, don't let those who are bullying you ruin your life, they are out to do just that. And that's probably all they'll do their whole lives";
                year = "2017";
                url = "https://www.example.com/"; // TODO: Find a URL
                break;
            case 12: //Special Case
                QuoteOfTheDay.setAuthor("William Shakespeare", "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Shakespeare.jpg/468px-Shakespeare.jpg");
                QuoteOfTheDay.setColor("#BF6FDB");
                QuoteOfTheDay.setURL("https://i.imgur.com/4KfdylP.jpg");
                QuoteOfTheDay.setImage("https://i.imgur.com/4KfdylP.jpg");
                return QuoteOfTheDay;
            case 13:
                author = "Mighty_Eagle073";
                authorImage = "https://yt3.ggpht.com/-Q5IvX3eEGl8/AAAAAAAAAAI/AAAAAAAAAAA/LspLd8v-PR8/s100-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "Spamming = Damning";
                year = "2017";
                url = "https://www.example.com/"; // TODO: Find a URL
                break;
            case 14:
                author = "Nibble";
                authorImage = "https://yt3.ggpht.com/-SUPNlJ8a7qA/AAAAAAAAAAI/AAAAAAAAAAA/R_I4z7057_w/s100-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "AUTO CORRECF!!!";
                year = "2017";
                url = "https://www.example.com/"; // TODO: Find a URL
                break;
            case 15:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = "@Derpy ♀ For your own fucking good, learn what political correctness is.";
                year = "2017";
                url = "https://cdn.discordapp.com/attachments/371830028381454337/372263065472729088/2017-10-24_01.58.19.png"
                break;
            case 16:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = "But couldn't you at least put the mounted disks on the dick or on Dinder?\nDOCK";
                year = "2017";
                url = "https://www.example.com"; // TODO: Find a URL
                break;
            case 17:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = "Just happened one gay?\nDAY\nOH BOY\nI BLAME SWIPE TYPING";
                year = "2017";
                url = "https://www.example.com"; // TODO: Find a URL
                break;
            case 18:
                author = "Alee14";
                authorImage = "https://cdn.discordapp.com/avatars/242775871059001344/dd7be36e859f206f9b6606855681280e.png?size=2048";
                quote = "IS THERE A GOOOOOGALIE HERE!!!! (Go to 2:30 into the video)";
                year = "2014";
                url = "https://youtu.be/Ap6fUlMx90A";
                break;
            case 19:
                author = "143malliw";
                authorImage = "https://yt3.ggpht.com/-SUPNlJ8a7qA/AAAAAAAAAAI/AAAAAAAAAAA/R_I4z7057_w/s100-c-k-no-mo-rj-c0xffffff/photo.jpg";
                quote = "but i can't write a quote, for I am the quote";
                year = "2017";
                url = "https://www.example.com/"; // TODO: Find a URL
                break;
            case 20:
                author = "How are you";
                authorImage = "https://cdn.discordapp.com/avatars/355851198106173440/85032004f7aeeffa5a863e2aa54b6e9b.png?size=2048";
                quote = "@Uranium Chloride a song i made for you :smiley: it everyday bro with that victor tron flow.. 100 in one year never done before got on the comptuon man osfirsttimer is next";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 21:
                author = "AstralMod";
                authorImage = "https://cdn.discordapp.com/avatars/282048599574052864/56d2d99bf763df5a05f5d157108edbdc.png?size=2048";
                quote = "Welcome to the weekly chat chat!";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 22:
                author = "AstralPhaser";
                authorImage = "https://cdn.discordapp.com/avatars/230480971084988417/32f46a9671c6ceedc54b369ea73be178.png?size=2048";
                quote = "Ok the shrimp is now on the barbie";
                year = "2017";
                url = "https://media.discordapp.net/attachments/277922530973581312/355882401546764289/d300-123-6379-orton-wp.png";
                break;
            case 23:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = ":joy:  It's Cameron's Birthday!\nJoy!!!11!!111!!!!";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 24:
                author = "RogueAI";
                authorImage = "https://cdn.discordapp.com/avatars/275867508932608000/1702545b94e23ea7dfc1346a83542792.png?size=2048";
                quote = "1) java stinks and is a big stupid,";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 25:
                author = "Steve Jobs";
                authorImage = "http://media.syracuse.com/news/photo/2011/01/9177328-large.jpg";
                quote = "It's really hard to design products by focus groups. A lot of times, people don't know what they want until you show it to them.";
                year = "1998";
                url = "https://www.huffingtonpost.com/gregory-ciotti/why-steve-jobs-didnt-list_b_5628355.html";
                break;
            case 26:
                author = "arencllc";
                authorImage = "https://cdn.discordapp.com/avatars/191290329985581069/faf1a210c222d18fb30fcd9ec1082e7f.png?size=2048";
                quote = "Coding for uwp is as hard as using a UWP program.";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 27:
                author = "FloppyDiskDrive";
                authorImage = "https://cdn.discordapp.com/avatars/228271067821506560/82edc6d24cc88b300260707e44f3442f.png?size=2048";
                quote = "Victor would be a champ at synchronized thinking.";
                year = "2017"
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 28:
                author = "Tembot";
                authorImage = "https://cdn.discordapp.com/avatars/361202413165608962/f334f0c4365164379311cebee300dd2a.png?size=2048";
                quote = "Why are u stocking me";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 29:
                author = "TheMemeKnight";
                authorImage = "https://cdn.discordapp.com/avatars/267766634452615168/df08523e0ca30929ceb0dc28dcda8f78.png?size=2048";
                quote = "@Alee14  Do YoU kNoW hOw It FeElS tO bE iN mY sOcKs";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 30:
                author = "Alee14";
                authorImage = "https://cdn.discordapp.com/avatars/242775871059001344/dd7be36e859f206f9b6606855681280e.png?size=2048";
                quote = "By forcking it\nSpeaking of it\nI'm adding that as my new wuote :wink:\nOh\nanother one as well :wink:";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 31:
                author = "Alee14";
                authorImage = "https://cdn.discordapp.com/avatars/242775871059001344/dd7be36e859f206f9b6606855681280e.png?size=2048"
                quote = "I want to live in a bus when i'm older";
                year = "2017";
                url = "https://www.example.com/" //TODO: Find a URL
                break;
            case 32:
                author = "Tembot";
                authorImage = "https://cdn.discordapp.com/avatars/361202413165608962/f334f0c4365164379311cebee300dd2a.png?size=2048";
                quote = "wat de hek";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 33:
                author = "PieLover12";
                authorImage = "https://cdn.discordapp.com/avatars/344630031303311371/d84ae603ee53a5b54f7b78bcb4f733f2.png?size=2048";
                quote = "DIE YOU LOOK LIKE TINY GIRL";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 34:
                author = "Victor Tran";
                authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg";
                quote = "(there is a :middle_finger: emoji sitting in Gboard now after my brother sent that to Google assistant)";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
            case 35:
                author = "AstralPhaser";
                authorImage = "https://cdn.discordapp.com/avatars/230480971084988417/32f46a9671c6ceedc54b369ea73be178.png?size=2048";
                quote = "anyway, I've gotta go now, I'll be back in 3 years";
                year = "2017";
                url = "https://www.example.com/"; //TODO: Find a URL
                break;
        }

        QuoteOfTheDay.setAuthor(author, authorImage);
        QuoteOfTheDay.setColor("#BF6FDB");
        QuoteOfTheDay.setDescription(quote);
        QuoteOfTheDay.setFooter("- " + year);
        QuoteOfTheDay.setURL(url);
    } else {
        log("[!] No need for new quote of the day");
    }


    return QuoteOfTheDay;
}

client.on('ready', () => {
    log('[>] ARE YA READY KIDS? AYE AYE CAPTAIN!');
    client.user.setPresence({
        game: {
            name: "for help: aq:help",
            type: 0
        }
    });
});


client.on('message', message => {
    if (message.content === 'aq:ping') {
        message.channel.send('<:vtBoshyTime:280178631886635008> PONG! I want to play pong... :\'(');
    } else if (message.content === 'aq:pong') {
        message.channel.send('<:vtBoshyTime:280178631886635008> PING!');
    } else if (message.content === 'aq:isthisthingon') {
        message.channel.send('no 💤');
    } else if (message.content === 'aq:quoteoftheday') {
        var quoteofday = GetQuoteOfTheDay();
        message.channel.send("Here's the quote of the day (as of " + QuoteOfTheDayStartTime.toUTCString() + ")");
        message.channel.sendEmbed(quoteofday);
    } else if (message.content === "aq:forcequote") {
        QuoteOfTheDayExpiry = 0;
        var quoteofday = GetQuoteOfTheDay();
        message.channel.send("New quote of the day!");
        message.channel.sendEmbed(quoteofday);
    } else if (message.content === 'aq:reboot') {
        /*
    message.channel.send("Goodbye! We'll be back in a moment!").then(messageDeleteTimer);
    log('[?] Reboot Requested. Rebooting...');
    client.destroy();
    DidReboot = true;
    client.login('MjgwMjQ1MDAwMDI0MDk2NzY4.C4K8Nw.InlnQvRmbvfJG0nv13FXtoVzXwc');
*/
        message.channel.send("Good try... But we're not letting anyone reboot me yet!");
    } else if (message.content === 'aq:poweroff') {
        /*
        log(message.guild.roles);
        if (message.guild.roles.get('Moderator').members.keyArray().includes(message.author.username)) {
          message.channel.send("Access Granted");
        } else {
          message.channel.send("Access Denied");
        }*/

        message.channel.send("Well... vicr123 tried to code this... but it kept crashing... Ironic isn't it? :(");
    } else if (message.content === 'aq:help') {
        // This is the new help
        const embed = new Discord.RichEmbed()
            .setTitle("AstrelQuact Commands")
            .setDescription('Every command that you input in this bot you must use the following prefix `aq:`.')
            .setThumbnail('https://cdn.discordapp.com/avatars/373224323529310208/10311b6f6bb439681480b0ced7efaf66.png?size=2048')
            .setColor("#BF6FDB")
            .addField("- General Commands", "ping\npong\ninvitebot\ncontribute\ninformation\nreboot\npoweroff", true)
            .addField("- Quote Commands", "quoteoftheday\nforcequote\nsuggestaquote", true)
            .setFooter("AstrelQuact Copyright 2017. This was made by TheRandomMelon and vicr123 and modified by Alee14.")
        message.channel.send(embed);
    } else if (message.content === 'aq:oldhelp') {
        message.channel.send("Available commands:\n```\n" +
            "aq:ping, aq:pong     Requests AstrelQuact to reply with a message\n" +
            "aq:quoteoftheday   Requests AstrelQuact for the quote of the day\n" +
            "aq:forcequote      Requests AstrelQuact to reset the quote of the day\n" +
            "aq:reboot          Requests AstrelQuact to reboot\n" +
            "aq:poweroff        Tells AstrelQuact to leave\n```"
        );
    } else if (message.content === 'aq:easteregg') {
        message.channel.send("```cpp\n" +
            "There are no easter eggs to be found here. Begone!" +
            "\n```");
    } else if (message.content === 'aq:easterwgg') {
        message.channel.send("```cpp\n" +
            "Ha, you found an easter egg! Take that, !easteregg!" +
            "\n```");
    } else if (message.content === 'aq:about') {
        message.channel.send("Made in Node.js by TheRandomMelon and vicr123. Crafted for the AstrelTaser Cantral Discord server. And this was modified by Alee14.");
    } else if (message.content === 'aq:contribute') {
        message.reply("I can see you want to help AQ? Welp here's the link: https://github.com/FakeDiscordServersBots/AstralQuote");
    } else if (message.content === 'aq:uptime') {
        var timeString; // What we'll eventually put into the message
        var uptime = parseInt(client.uptime); // Get uptime in ms
        uptime = Math.floor(uptime / 1000); // Convert from ms to s
        var uptimeMinutes = Math.floor(uptime / 60); // Get the uptime in minutes
        var minutes = uptime % 60;
        var hours = 0;

        while (uptimeMinutes >= 60) {
            hours++;
            uptimeMinutes = uptimeMinutes - 60;
        }

        if (uptimeMinutes < 10) {
            timeString = hours + ":0" + uptimeMinutes // We need to add an additional 0 to the minutes
        } else {
            timeString = hours + ":" + uptimeMinutes // We don't need to add an extra 0.
        }

        message.reply(":clock1: AstrelQuact has been up for " + timeString + " hours.");
        log("[!] Someone just typed in the uptime command! Here's how long i've been up for: " + timeString + " hours.")
    } else if (message.content === 'aq:invitebot') {
        var embed = new Discord.RichEmbed();

        embed.setAuthor("AstrelQuact", "https://cdn.discordapp.com/avatars/373224323529310208/10311b6f6bb439681480b0ced7efaf66.png?size=2048");
        embed.setColor("#BF6FDB");
        embed.setDescription("Ooh! I can see you want to invite me to a server! Here's the link: https://discordapp.com/oauth2/authorize?client_id=373224323529310208&scope=bot&permissions=314368");
        embed.setURL("https://discordapp.com/oauth2/authorize?client_id=373224323529310208&scope=bot&permissions=314368");

        message.channel.send(embed)
    } else if (message.content === "aq:suggestaquote") {
        var embed = new Discord.RichEmbed();

        embed.setAuthor("AstrelQuact", "https://cdn.discordapp.com/avatars/373224323529310208/10311b6f6bb439681480b0ced7efaf66.png?size=2048");
        embed.setColor("#BF6FDB");
        embed.setDescription("This feature is coming soon!");

        message.channel.send(embed)
        message.author.sendMessage(SuggestQuoteStartMessage);
    } else if (message.content === "aq:information") {
        var embed = new Discord.RichEmbed();

        embed.setAuthor("AstrelQuact", "https://cdn.discordapp.com/avatars/373224323529310208/10311b6f6bb439681480b0ced7efaf66.png?size=2048");
        embed.setColor("#BF6FDB");
        embed.setDescription("AstrelQuact Version: " + aqVersion + "\n");

        message.channel.send(embed)
    } else if (message.content.startsWith("aq:")) {
        deleteOriginalMessage = false;

        log("[X] " + message.content + " [Unrecognised command]");
        var msg;
        switch (Math.floor(Math.random() * 1000) % 8) {
            case 0:
                msg = "Trying to break me, are you?";
                break;
            case 1:
                msg = "Sorry, what was that?";
                break;
            case 2:
                msg = "Oops... I missed that.";
                break;
            case 3:
                msg = "Either you typed something wrong... Or I'm not smart enough to understand you.";
                break;
            case 4:
                msg = "What are you trying to do!?";
                break;
            case 5:
                msg = "Is this the end of AstrelQuact?";
                break;
            case 6:
                msg = "Not sure what you mean.";
                break;
            case 7:
                msg = "Pretty sure you didn't expect this message to appear...";
                break;
        }
        message.channel.send("<:vtBoshyTime:280178631886635008> GAH! " + msg + " Refer to aq:help for syntax and other stuff.");
    }
});


client.on('guildCreate', guild => {
    log(`[>] I just joined ${guild.name}. This server has ${guild.memberCount} members.`)

});

client.on('guildDelete', guild => {
    log(`[>] I was removed from ${guild.name}.`)

});

client.login(config.token).catch(
    function() {
        log("[X] Login failed.");
    });