Skip to content

$isGuildMuted

$isGuildMuted is similar but not to confuse with $isMuted this will check if the user is server muted.

Usage

$isGuildMuted[userID?;guildID?]

Parameters

FieldTypeDescriptionRequired
userID?numberThe ID of the user you want to check if they’re server muted.false
guildID?numberThe ID of the guild where they’re server muted in.false

Example(s)

This will return either true or false depending on if you’re server muted or not:

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