An automation is one sentence:
When someone does X, if all of these are true, do these things.
Rules run independently per trigger. Up to 50 rules per server.
| License | Premium |
| Needs | Whatever the actions need — Manage Roles for role actions, Ban Members for a ban, etc. |
1–60 characters · required
Internal label. Name it after what it does — Welcome role, No links for new members — because in six months the list is the only documentation you have.
Default true
Turn a single rule off without deleting it. Useful for seasonal rules and for isolating which rule is causing something.
0–86400 seconds · default 0
Per-user re-trigger cooldown. 0 means no cooldown.
The event that starts the rule. Exactly one per rule.
A member…
Optional narrowing applied before conditions are evaluated — cheaper and clearer than expressing the same thing as a condition.
| Filter | Limit | Applies to |
|---|---|---|
| Only in these channels/categories | up to 100 | Any trigger with a channel |
| Never in these channels/categories | up to 100 | Any trigger with a channel |
| Only for these roles | up to 50 | Receives / loses a role |
| Only these emojis | up to 50 | Adds a reaction |
| Only these button ids | up to 50 | Clicks a button |
Channel filters accept category ids too — one category id covers every channel inside it.
All conditions must pass (logical AND). Leave the list empty to always run. Up to 20 conditions.
| Condition | Passes when |
|---|---|
| It happened in one of these channels or categories | The event channel is listed |
| It did NOT happen in one of these channels or categories | The event channel is not listed |
| The user has one of these roles | Any listed role |
| The user has all of the following roles | Every listed role |
| The user has none of these roles | No listed role |
| The user does not have all of the following roles | At least one listed role is missing |
| The user is one of these users | Their id is listed |
| The user is NOT one of these users | Their id is not listed |
| The message contains one of these words or phrases | Substring match |
| The message contains exactly one of these words or phrases | Whole-word match |
| The message contains none of these words or phrases | No listed phrase appears |
| The message has an attachment | Type audio, image, text, video or any |
| The message is / is not a reply | Matches the chosen value |
Limits: up to 100 channels, 50 roles, 100 user ids, 100 phrases (1–200 characters each) per condition.
Executed in order. A failing action is skipped and the rest still run. Between 1 and 15 actions per rule.
| Action | Parameters |
|---|---|
| Give these roles to the user | 1–25 roles |
| Remove these roles from the user | 1–25 roles |
| Action | Parameters |
|---|---|
| Kick the user | Optional reason (up to 400 characters) |
| Ban the user | Optional reason, optional "delete messages of the last 0–7 days" |
| Unban a user | User id, optional reason |
| Timeout the user | 10 seconds – 28 days, optional reason |
| Remove the user's timeout | Optional reason |
| Action | Parameters |
|---|---|
| Send a message | Content (1–2000 characters), target channel (or the trigger's channel), up to 5 buttons |
| Reply to the message | Content (1–2000 characters) |
| Send the user a DM | Content (1–2000 characters) |
| Repost the message in another channel | Target channel |
| Create a thread from the message | Thread name (1–100 characters) |
| Pin the message | — |
| Delete the message | — |
| React to the message with these emojis | 1–20 emojis |
Message content supports the usual placeholders.
A send a message action can attach up to five buttons:
| Field | Rules |
|---|---|
| Button ID | 1–60 characters, no colons or whitespace |
| Label | 1–80 characters |
| Style | Primary · Secondary · Success · Danger |
The button id is what a button-click trigger matches on. That is the loop that makes automations
interactive: rule A posts a message with a button called apply, rule B triggers on a button click
filtered to apply and gives out a role.
| Action | Parameters |
|---|---|
| Give the user coins | 1–1000000 |
| Take coins from the user | 1–1000000 |
| Give the user XP | 1–1000000 |
| Take XP from the user | 1–1000000 |
These write into the Economy and Leveling plugins — those must be enabled for the action to have anywhere to write.
When: Joins the server
If: (nothing)
Do: Give these roles to the user → @Member
When: Sends a message
Only in these channels → #suggestions
If: (nothing)
Do: React to the message with these emojis → 👍 👎
Create a thread from the message → "Discussion"
When: Sends a message
If: The user has none of these roles → @Level 5
The message contains one of these words or phrases → http:// https://
Do: Delete the message
Send the user a DM → "Links are unlocked at level 5."
Rule 1
When: Joins the server
Do: Send a message → #welcome, "Want to apply?" + button id "apply"
Rule 2
When: Clicks a button
Only these button ids → apply
Do: Give these roles to the user → @Applicant
Reply to the message → "You now have @Applicant — check #applications."