Skip to content

$isChannelManageable

$isChannelManageable will check if the channel is manageable or not.

Usage

$isChannelManageable[channelID?]

Parameters

FieldTypeDescriptionRequired
channelID?numberID of the channel to check if the channel is manageable or not.false

Example(s)

This will return true or false depending on if the channel you’re executing the command in is manageable:

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