$voiceID
$voiceID will return the current or given voice ID of a user.
Usage
$voiceID[userID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| userID? | number | The 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):
1client.command({2 name: "voiceID",3 code: `4 $voiceID[$authorID]5 `6});