$voiceMemberCount
$voiceMemberCount
will return the total amount of members in the specified voice channel.
Usage
$voiceMemberCount[channelID]
Parameters
Field | Type | Description | Required |
---|---|---|---|
channelID | number | The ID of the voice channel. | true |
Example(s)
1client.command({2 name: "voiceMemberCount",3 code: `4 $voiceMemberCount[1182613173220675617]5 $comment[Example ID value of a voice channel]6 `7});