$moveUser
$moveUser will move a given user between two Voice Channels.
Usage
$moveUser[guildID;userID;channelID;reason?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID | number | The guild ID of where the voice channel is located in. | true |
| userID | number | The user ID of the user to move. | true |
| channelID | number | The Voice Channel ID of where the user will be moved to. | true |
| reason? | string | Reason that will be displayed in the guild’s audit logs. | false |
Example(s)
This will move a user to another Voice Channel:
1client.command({2 name: "moveUser",3 code: `4 $moveUser[$guildID;userID;new voice channel ID;Testing!]5 `6});