So. I am trying to make a discord bot, but i can't quite understand Discord.js.
My code looks like this:
client.on("message", function(message) {
if(message.content === "ping") {
client.message.send(author, "pong");
}
});
And the problem is that I can't quite understand how to send a message.
Can anybody help me ?
You have an error in your .send()
line. The current code that you have is used in an earlier version of the discord.js library, and the send function has been changed.
To send a message, use this line:
message.channel.send('My Message')
If you get an error saying that message
is not defined
, make sure that you have put the line in your message event handler.
client.on("message", function(message) {
//message sending goes here
});
You can also send a message to a specific channel, which you can do using the line below.
client.channels.get(channelID).send('My Message');
Or if you prefer, a guild's default channel (the #general channel that was made when the guild was created)
guildObj.defaultChannel.send('My Message');
Hope this helped,
- Spy