Skip to content

$guildCommunityUpdatesChannelID

$guildCommunityUpdatesChannelID will return the guild’s community updates channel.

Usage

$guildCommunityUpdatesChannelID[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false

Example(s)

This will return the community updates channel ID of the current guild (if any):

1
client.command({
2
name: "guildCommunityUpdatesChannelID",
3
code: `
4
$guildCommunityUpdatesChannelID[$guildID]
5
`
6
});