JavaScript
x
43
43
1
'user strict';
2
3
const { Discord, Client, MessageAttachment } = require('discord.js');
4
5
const client = new Discord.Client();
6
7
client.on('ready', () => {
8
console.log('I am ready!');
9
});
10
//reply to certain messages... start...
11
client.on('message', message => {
12
if (message.content === 'ping') {
13
message.send('pong');
14
}
15
});
16
17
client.on('message', message => {
18
if (message.content === 'ding') {
19
message.channel.send('dong');
20
}
21
});
22
//...end
23
24
//avatar url... start...
25
client.on('message', message => {
26
if (message.content === 'qavatar') {
27
message.reply(message.author.displayAvatarURL());
28
}
29
});
30
//...end
31
32
//attachment images... start...
33
const { Client, MessageAttachment } = require('discord.js')
34
35
client.on('message', message => {
36
if (message.content === 'qrip') {
37
const attachment = new MessageAttachment('https://i.imgur.com/VyiVReC.jpg');
38
message.channel.send(attachment);
39
}
40
});
41
42
client.login('My Token');
43
I am trying to create a discord bot, but each time I try to execute the code, I get the error in the title… I am new to JavaScript and Discord Js… I am sorry if this seems silly, but I would be happy if someone could help…
Advertisement
Answer
You are destructing the Client again in const { Client, MessageAttachment } = require('discord.js')