Skip to content

$guildAFKChannelID

$guildAFKChannelID will return a guild’s AFK voice channel

Usage

$guildAFKChannelID[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.true

Example(s)

This will return the AFK voice channel of your guild:

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