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

# Setup

> Configure welcome messages.

# Welcome Messages

The Welcomer system allows BlaZe to automatically greet new members when they join your server.

## Add Welcome Channels

```bash theme={null}
?greet channel add <channel>
```

Example:

```bash theme={null}
?greet channel add #welcome
```

You may configure multiple welcome channels.

Whenever a member joins, BlaZe will send the welcome message to every configured channel.

## Remove Welcome Channels

```bash theme={null}
?greet channel remove <channel>
```

Removes a channel from the welcome channel list.

## Set Welcome Message

```bash theme={null}
?greet message <message>
```

Example:

```bash theme={null}
?greet message Welcome to {server}, {usermention}!
```

## Supported Variables

The following variables can be used inside welcome messages and welcome embeds:

| Variable        | Description           |
| --------------- | --------------------- |
| `{usermention}` | Member mention        |
| `{username}`    | Member username       |
| `{userid}`      | Member ID             |
| `{membercount}` | Total server members  |
| `{server}`      | Server name           |
| `{usercreated}` | Account creation time |
| `{userjoined}`  | Join time             |

Example:

```txt theme={null}
Welcome {usermention} to {server}!

You are member #{membercount}.
```

## Test Your Welcome Message

```bash theme={null}
?greet test
```

Sends a preview of your current welcome message.

## View Configuration

```bash theme={null}
?greet config
```

Displays the current Welcomer configuration.

## Reset Welcome Messages

```bash theme={null}
?greet reset
```

Removes the configured welcome message.

<Warning>
  Resetting the welcome message does not remove welcome channels or embed settings.
</Warning>

## Auto Delete

```bash theme={null}
?greet autodel <seconds>
```

Automatically deletes welcome messages after a specified time.

Example:

```bash theme={null}
?greet autodel 5
```

To disable auto deletion:

```bash theme={null}
?greet autodel 0
```

<Info>
  Auto Delete is a Prime feature.
</Info>
