Skip to content

$setAutomodAllowList

$setAutomodAllowList will allow words for the given automod rule.

Usage

$setAutomodAllowList[...words]

Parameters

FieldTypeDescriptionRequired
…wordsstringThe words to whitelist.true

Example(s)

This will create a new automod rule with the BlockMessage action and two whitelisted words.

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