# Webhooks

## 🪝 Discord Webhooks

Log all chat messages to Discord channels.

### 🔧 Setup

#### Step 1: Create Webhooks

In your Discord server:

1. Server Settings → Integrations → Webhooks
2. New Webhook → Copy URL

#### Step 2: Configure

Edit `config/config.lua`:

```lua
Config.Webhooks = {
    enabled = true,
    me = 'https://discord.com/api/webhooks/.../...',
    do_ = 'https://discord.com/api/webhooks/.../...',
    ooc = 'https://discord.com/api/webhooks/.../...',
    adminchat = 'https://discord.com/api/webhooks/.../...',
    botName = 'Elena Chat',
    botAvatar = 'https://i.imgur.com/4M34hi2.png',
    serverName = 'Your Server Name'
}
```

### 📨 Webhook Format

Each message includes:

* 👤 Player name
* 🆔 Server ID
* 🔑 Identifier (license)
* 💬 Message content
* ⏰ Timestamp

### 🎨 Embed Colors

| Type       | Color     |
| ---------- | --------- |
| /me        | 🩷 Pink   |
| /do        | 💜 Purple |
| /ooc       | ⚪ White   |
| /adminchat | 💚 Green  |

> ⚠️ **Privacy:** Inform your players about message logging policies.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://elena-scripts.gitbook.io/elenascripts/core-systems/chat/webhooks.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
