Find channel discord js
// Insert the Channel ID in the brackets. TO find that, right click the
// channel and select "Copy ID". Discord Developer must be on.
let channel = message.guild.channels.cache.get(channelid)
Find channel discord js
// Insert the Channel ID in the brackets. TO find that, right click the
// channel and select "Copy ID". Discord Developer must be on.
let channel = message.guild.channels.cache.get(channelid)
how to get a channelid discord.js
message.guild.channels.cache.get(channelid);
discord js channel connect
client.on('message', message => {
if (message.author.bot) return;
if (message.channel.id === '2ND CHANNEL ID'){
const Messager = message.author.username;
const GlobalMessage = message.content;
const GlobalSender = client.channels.cache.find(channel => channel.id === '1ST CHANNEL ID')
const EmoGlobalChatEmbed = new Discord.MessageEmbed()
.setColor('#b700ff')
.setTitle("Message From : " + Messager)
.addField(" \u200B ", GlobalMessage)
.setFooter('Best, Emo', 'https://i.ibb.co/qjgWyQP/emo.png');
message.channel.send("Message Executed")
message.channel.send(EmoGlobalChatEmbed);
GlobalSender.send("**New Message : **")
GlobalSender.send(EmoGlobalChatEmbed)
message.delete()
} else if (message.channel.id === '1ST CHANNEL ID') {
const Messager = message.author.username;
const GlobalMessage = message.content;
const GlobalSender = client.channels.cache.find(channel => channel.id === '2ND CHANNEL ID')
const EmoGlobalChatEmbed = new Discord.MessageEmbed()
.setColor('#b700ff')
.setTitle("Message From : " + Messager)
.addField(" \u200B ", GlobalMessage)
.setFooter('Best, Emo', 'https://i.ibb.co/qjgWyQP/emo.png');
message.channel.send("Message Executed")
message.channel.send(EmoGlobalChatEmbed);
GlobalSender.send("**New Message : **")
GlobalSender.send(EmoGlobalChatEmbed)
message.delete()
}
})
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us