Skip to content

$isMuted

$isMuted will check if a specific user is muted within a voice channel.

Usage

$isMuted[userID?;guildID?]

Parameters

FieldTypeDescriptionRequired
userIDnumberID of the user you want to check if they’re muted.true
guildID?numberID of the guild where the user is muted in.true

Example(s)

This will check if you’re currently muted in a voice channel and returns either true or false:

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