# Exports

### Simple Exports

* Can be used for clients or servers

<pre class="language-lua"><code class="lang-lua">exports['kc_logger']:DiscordLog({
    webhook = WEBHOOK_URL, 
<strong>    title = '📥 Join',
</strong>    embeds = '**'..gameName..'** New boarding to the city.\n\n`👥`**Nama: '..gameName..'**\n`🔢` **Server ID:** `'..src..'`\n`💬` **Discord:** &#x3C;@'..discordId..'> (||'..discordId..'||)\n`🎮` **Steam Hex: **`'..identifiers..'`',
    color = '#3AF241'
})
</code></pre>

| Code Block | Value  | Explanation              |
| ---------- | ------ | ------------------------ |
| webhook    | URL    | Your discord webhook URL |
| title      | string | Title to order embeds    |
| embeds     | string | Message content          |
| color      | string | Color for message        |

### Advanced Exports

* Can be used for clients or servers

<pre class="language-lua"><code class="lang-lua">exports['kc_logger']:DiscordLog({
    webhook = WEBHOOK_URL, 
    name = 'Kucluck Logger',
    content = 'This is a content for logger',
<strong>    title = '📥 Join',
</strong>    embeds = '**'..gameName..'** New boarding to the city.\n\n`👥`**Nama: '..gameName..'**\n`🔢` **Server ID:** `'..src..'`\n`💬` **Discord:** &#x3C;@'..discordId..'> (||'..discordId..'||)\n`🎮` **Steam Hex: **`'..identifiers..'`',
    color = '#3AF241'
})
</code></pre>

| Code Block | Value  | Explanation              |
| ---------- | ------ | ------------------------ |
| webhook    | URL    | Your discord webhook URL |
| name       | string | Name log sendder         |
| content    | string | Message content          |
| title      | string | Title to order embeds    |
| embeds     | string | Message content embeds   |
| color      | string | Color for message        |
