> ## Documentation Index
> Fetch the complete documentation index at: https://docs.razebot.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Greet Messages

> Configure temporary channel greeting messages with customizable auto-deletion timers.

# Greet Messages

<Badge variant="elite">Tier 1: Elite</Badge>

> Send dynamic greetings when members send messages in designated channels, featuring configurable auto-delete intervals to keep chats clean.

***

## Command Overview

| Command  | Aliases | Syntax                            | Description                                      | Permissions   |
| :------- | :------ | :-------------------------------- | :----------------------------------------------- | :------------ |
| `.greet` | —       | `.greet <subcommand> [arguments]` | Configures channel-specific greet announcements. | Administrator |

***

## Subcommands Reference

| Subcommand | Syntax                                                         | Description                                               | Example                                  |
| :--------- | :------------------------------------------------------------- | :-------------------------------------------------------- | :--------------------------------------- |
| `set`      | `.greet set <#channel\|channelId> <autodel_seconds> {message}` | Sets greet message with auto-delete duration (in seconds) | `.greet set #general 10 {user} Welcome!` |
| `autodel`  | `.greet autodel <#channel\|channelId> <seconds>`               | Updates auto-delete timer for an existing greet channel   | `.greet autodel #general 15`             |
| `unset`    | `.greet unset <#channel\|channelId>`                           | Removes greet message from a channel                      | `.greet unset #general`                  |
| `list`     | `.greet list`                                                  | Displays all configured greet channels                    | `.greet list`                            |
| `test`     | `.greet test [#channel\|channelId]`                            | Sends a test preview of the configured greet message      | `.greet test #general`                   |

***

## Configuration Examples

<Tabs>
  <Tab title="Set Greet with Auto-Delete">
    ```bash theme={null} theme={null}
    .greet set #general 10 Hey {user}, welcome to **{server}**! Enjoy your stay.
    ```
  </Tab>

  <Tab title="Update Timer">
    ```bash theme={null} theme={null}
    .greet autodel #general 20
    ```
  </Tab>

  <Tab title="Test & Verify">
    ```bash theme={null} theme={null}
    .greet test #general
    .greet list
    ```
  </Tab>

  <Tab title="Remove Greet">
    ```bash theme={null} theme={null}
    .greet unset #general
    ```
  </Tab>
</Tabs>
