Skip to content

$setAutomodMentionTotalLimit

$setAutomodMentionTotalLimit will set the allowed mention limit for the selected automod rule.

Usage

$setAutomodMentionTotalLimit[limit]

Parameters

FieldTypeDescriptionRequired
limitnumberThe maximum of allowed mentions.true

Example(s)

This will create a new automod rule with the maximum allowed mention limit of 3.

1
client.command({
2
name: "setAutomodMentionTotalLimit",
3
code: `
4
$createAutomodRule[$guildid;Automod Rule;true;Creating a new rule!]
5
$setAutomodMentionTotalLimit[3]
6
`
7
});