Answer the question
In order to leave comments, you need to log in
How to send messages to the first channel on all Discord servers?
I want to do something like alerts for servers that have a bot. So that I can write one command to send a message to the server through the bot.
Answer the question
In order to leave comments, you need to log in
client.guilds.cache.array().forEach(guild => {
guild.channels.cache
.array()
.filter(c => c.type !== "category" && c.type !== "voice" && c.position === 0)[0]
.send("сообщение")
})
UnhandledPromiseRejectionWarning: DiscordAPIError: Missing Permissions
TypeError: Cannot read property 'send' of undefined
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question