Skip to content

$voiceMemberCount

$voiceMemberCount will return the total members of the specified voice channel.

Usage

$voiceMemberCount[channelID]

Parameters

FieldTypeDescriptionRequired
channelIDnumberThe ID of the voice channel.true

Example(s)

1
client.command({
2
name: "voiceMemberCount",
3
code: `
4
$voiceMemberCount[1182613173220675617]
5
$comment[Example ID value of a voice channel]
6
`
7
});