Skip to content

AutoMod

AutoMod automatically detects and handles rule violations without moderator intervention.

  1. Enable AutoMod: /automod enable
  2. View current settings: /automod status
  3. Toggle rules as needed: /automod toggle <rule>

Detects users sending too many messages too quickly.

/automod toggle spam
/automod set spam messages 5 # Messages threshold
/automod set spam seconds 3 # Time window
/automod set spam action mute # Action to take

Detects repeated identical messages.

/automod toggle duplicate
/automod set duplicate threshold 3 # Number of duplicates
/automod set duplicate seconds 60 # Time window
/automod set duplicate action warn # Action to take

Detects messages with too many capital letters.

/automod toggle caps
/automod set caps threshold 0.7 # 70% caps threshold
/automod set caps minLength 10 # Minimum message length
/automod set caps action delete # Action to take

Flags accounts that are too new.

/automod toggle newAccount
/automod set newAccount daysOld 7 # Minimum account age
/automod set newAccount action log # Action to take

Each rule can have one of these actions:

ActionDescription
deleteDelete the message
warnIssue a warning
muteTimeout the user
kickKick the user
banBan the user
logLog only (no action)

Exempt roles or channels from AutoMod:

/automod exempt add role @Moderators
/automod exempt add channel #bot-commands
/automod exempt remove role @Moderators

Exempted roles/channels will not trigger AutoMod rules.

Protect against join raids with automatic detection.

/automod raidmode on # Enable immediately
/automod raidmode off # Disable
/automod raidmode auto # Auto-detect raids

When set to auto, raid mode activates if too many users join in a short time:

  • Default threshold: 10 joins in 10 seconds
  • Automatically kicks new joins during raid mode
  • Sends notification to mod log
  • Auto-disables after cooldown period
  • New joins are automatically kicked
  • Notification sent to mod log channel
  • Server can optionally be locked down
/automod status

Shows:

  • Whether AutoMod is enabled
  • Status of each rule
  • Current thresholds and actions
  • Exempt roles and channels