Skip to content

$setAutomodExemptChannels

$setAutomodExemptChannels will exclude channels for the given automod rule.

Usage

$setAutomodExemptChannels[...channels]

Parameters

FieldTypeDescriptionRequired
…channelsnumberThe channels to exclude.true

Example(s)

This will create a new automod rule with the BlockMessage action and two excluded channels.

1
client.command({
2
name: "setAutomodExemptChannels",
3
code: `
4
$createAutomodRule[$guildid;Automod Rule;true;Creating a new rule!]
5
$setAutomodPreset[Slurs]
6
$setAutomodType[Keyword]
7
$setAutomodExemptChannels[$channelId;$randomChannelId]
8
$setAutomodActions[BlockMessage;$channelId;60;You tried to say slurs, you got blocked!]
9
`
10
});