> ## 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.

# Client Events

> Find the client events to use our notifications

## ShowNotification

Event to use normal notification client-side

```LUA theme={null}
TriggerEvent("smzi_notify:client:showNotification", notificationType, message, duration, title, icon)
```

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

## AdvancedShowNotification

Event to use advanced notification client-side

```LUA theme={null}
TriggerEvent("smzi_notify:client:showAdvancedNotification", notificationType, message, duration, title, subtitle, charIcon)
```

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