# ShowHelpNotification

E**xplicatif :**&#x20;

```lua
exports["ez-libs"]:ShowHelpNotification(message, thisFrame, beeper, displayTime)
```

&#x20;

## **Utilisation simple** :

* Via un *exports* :

```lua
exports["ez-libs"]:ShowHelpNotification("Message", true, true, 5)
```

## Utilisation dans une boucle :

* Via un *exports* :

```lua
Citizen.CreateThread(function()
    while true do
    local timer = 800

        if dist3 <= 10.0 then
            timer = 0
            exports["ez-libs"]:ShowHelpNotification("Message", true, false, -1)
        end

    Wait(timer)
    end
end)
```

<figure><img src="/files/DzIIheXlEghO4ubL3KbR" alt=""><figcaption><p>Voici le type de notification affichée lors du déclenchement de la fonction !</p></figcaption></figure>


---

# 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://ezdeveloppement.gitbook.io/ezdev-script/ez-libs-v4/fonctions/client-side/showhelpnotification.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.
