Skip to content

$moveUser

$moveUser will move a given user between two Voice Channels.

Usage

$moveUser[guildID;userID;channelID;reason?]

Parameters

FieldTypeDescriptionRequired
guildIDnumberThe guild ID of where the voice channel is located in.true
userIDnumberThe user ID of the user to move.true
channelIDnumberThe Voice Channel ID of where the user will be moved to.true
reason?stringReason that will be displayed in the guild’s audit logs.false

Example(s)

This will move a user to another Voice Channel:

1
client.command({
2
name: "moveUser",
3
code: `
4
$moveUser[$guildID;userID;new voice channel ID;Testing!]
5
`
6
});