Skip to content

$voiceID

$voiceID will return the current or given voice ID of an user.

Usage

$voiceID[userID?]

Parameters

FieldTypeDescriptionRequired
userID?numberThe ID of the user you want to retrieve the current voice channel of.false

Example(s)

This will return your current voice channel ID (if any):

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