Skip to content

$guildSystemChannelID

$guildSystemChannelID will return the ID of the guild’s system channel.

Usage

$guildSystemChannelID[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe guild ID.false

Example(s)

This will return the guild’s system channel ID:

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