aandamitchell
aandamitchell

Reputation: 175

How to send a message to a specific channel

I'm trying to send a message to a specific channel with my Discord bot, which is in several servers. I want the bot to pick up on a message from one server and send a message to my personal server, in a specific channel, but I can't get it to 'find' the channel. Has the API changed or something? I tried npm install discord.js to update too.

Code:

if (message.author.id == 'XXXXX' && !mess.includes("Dank") && message.channel.id != 'XXXXX') {
  bot.channels.get('XXXXX').send('memes');
}

I tried a few things but none worked.

TypeError: Cannot read property 'send' of undefined
    at decideIfMention (C:\Users\XXXX\Desktop\Coding Crud\Discord Bot 2\bot.js:80:45)
    at Client.bot.on (C:\Users\XXXX\Desktop\Coding Crud\Discord Bot 2\bot.js:68:3)
    at emitOne (events.js:116:13)
    at Client.emit (events.js:211:7)
    at MessageCreateHandler.handle (C:\Users\XXXX\Desktop\Coding Crud\Discord Bot 2\node_modules\discord.js\src\client\websocket\packets\handlers\MessageCreate.js:9:34)
    at WebSocketPacketManager.handle (C:\Users\XXXX\Desktop\Coding Crud\Discord Bot 2\node_modules\discord.js\src\client\websocket\packets\WebSocketPacketManager.js:103:65)
    at WebSocketConnection.onPacket (C:\Users\XXXX\Desktop\Coding Crud\Discord Bot 2\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:333:35)
    at WebSocketConnection.onMessage (C:\Users\XXXX\Desktop\Coding Crud\Discord Bot 2\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:296:17)
    at WebSocket.onMessage (C:\Users\XXXX\Desktop\Coding Crud\Discord Bot 2\node_modules\ws\lib\event-target.js:120:16)
    at emitOne (events.js:116:13)

Upvotes: 16

Views: 161799

Answers (3)

Pedro Alonso
Pedro Alonso

Reputation: 137

If you are using typescript, it will need to make a type cast on Channel. So you can transform it in TextChannel and send the messages

const channel = client.channels.cache.find(ch => ch.name === 'compras');

if (channel.isText() {
    (<TextChannel> channel).send('message')
}

Upvotes: 12

Underscore
Underscore

Reputation: 170

Well, if you have the "client" instance of Discord.Client(), then use this:

SOLUTION UPDATED to work with newer discordjs versions

client.channels.cache.get(`channelID`).send(`Text`)

Don't forget the channeID parameter is a string type, not number. It's really simple yet precise.

Upvotes: 17

GMaiolo
GMaiolo

Reputation: 4628

Assuming you have the client (which would be an instance of Discord.Client) try finding the desired channel by using Client.find:

const channel = client.channels.cache.find(channel => channel.name === channelName)
channel.send(message)

If you don't have the client directly but have a message instance, you could always access it from within the Message.client property.

Upvotes: 25

Related Questions