Scripts Library
Browse reusable ItsMyBot scripts, actions, conditions, and triggers shared by the community.
Theo
Advanced Suggestion
EsteName_ & Theo
Anti Staff Ping
Theo
Basic Levels
Barni
Bug Report Command
Theo
Counting Channel
M4rk, Barni & ThΓ©o
Feedback Command
Cereale & Theo
Join Message & Role
Cereale & Theo
Reaction Roles
Add a snippet to the library
If you have created a useful script, action, condition, or trigger that you think others could benefit from, consider sharing it in the library! You can create a pull request with your snippet or share it in the Discord server. To create a snippet, follow these steps:
Create a file in content/snippets/itsmybot/<your-snippet-slug>.mdx, add the metadata at the top, then paste one or more fenced code blocks below it.
---
title: "Welcome flow"
description: "Posts a welcome card when a member joins."
author: "Your name"
tags:
- No Addons
- Presets Addon
---
```yaml title="welcome-message.yml"
actions:
- id: sendMessage
args:
components:
- type: text-display
content: "Welcome [[member_mention]]!"
triggers:
- id: guildMemberAdd
channel: "welcome-channel" # The channel where the welcome message will be sent.
```