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

# Server Exports

> Find the server exports to use our notifications

## ShowNotification

Export to use normal notification server-side

```LUA theme={null}
exports["smzi_notify"]:showNotification(source, notificationType, message, duration, title, icon)
```

| Params           | Types   | Examples                       | Optional |
| ---------------- | ------- | ------------------------------ | -------- |
| source           | integer | 1                              |          |
| notificationType | string  | infos, success, warning, error |          |
| message          | string  |                                |          |
| duration         | integer | 3000 (3 seconds)               |          |
| title            | string  |                                | ✓        |
| icon             | string  | circle-x \*lucide icons        | ✓        |

## AdvancedShowNotification

Export to use advanced notification server-side

```LUA theme={null}
exports["smzi_notify"]:showAdvancedNotification(source, notificationType, message, duration, title, subtitle, charIcon)
```

| Params           | Types   | Examples                       | Optional |
| ---------------- | ------- | ------------------------------ | -------- |
| source           | integer | 1                              |          |
| notificationType | string  | infos, success, warning, error |          |
| message          | string  |                                |          |
| duration         | integer | 3000 (3 seconds)               |          |
| title            | string  |                                |          |
| subtitle         | string  |                                |          |
| charIcon         | string  | char\_abigail                  |          |
