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)
channel info discord.js
// COMPLICATED SCRIPT DONT DISLIKE IF YOU CANT UNDERSTAND //
client.on('message', message => {
if (message.content.toLowerCase() === prefix + 'channel') {
if (message.author.bot) return;
if (UtilCommandsDisable.has(message.guild.id)) {
message.channel.send("**Util Commands are Disabled in This Server**")
} else if (!UtilCommandsDisable.has(message.guild.id)) {
message.delete()
const ChannelName = message.channel.name
const ChannelId = message.channel.id
const ChannelCategory = message.channel.parent
const ChannelCategoryID = message.channel.parentID
const LastPinAt = message.channel.lastPinAt
const ChannelInfo = new Discord.MessageEmbed()
.setColor('#b700ff')
.setTitle('Channel Info')
.addField("Channel Name : ", `${ChannelName}`)
.addField("Channel ID : ", `${ChannelId}`)
.addField("Category Name : ", `${ChannelCategory}`)
.addField("Category ID : ", `${ChannelCategoryID}`)
.addField("Last Pinned Message Date : ", `${LastPinAt}`)
.setFooter(`Thanks For Using ${client.user.tag}`, BotPFP);
message.channel.send(ChannelInfo)
}
}
})
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