> For the complete documentation index, see [llms.txt](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/scripts-paid/notif-fun/francais/installation.md).

# Installation

Pour installer tous les exports de Notif\_Fun, veuillez d'abord installer la version la plus récente de `es_extended`, à savoir la 1.13.4

Veuillez ouvrir `es_extended`, puis le fichier `client/functions.lua`. Ensuite, recherchez les lignes 153 à 161, qui ressemblent à ceci :                            &#x20;

```
---@param message string The message to show
---@param notifyType? string The type of notification to show
---@param length? number The length of the notification
---@param title? string The title of the notification
---@param position? string The position of the notification
---@return nil
function ESX.ShowNotification(message, notifyType, length, title, position)
	return IsResourceFound('esx_notify') and exports['esx_notify']:Notify(notifyType or "info", length or 5000, message, title, position)
end

```

Remplacer à ceci :&#x20;

```
---@param message string The message to show
---@param notifyType? string The type of notification to show
function ESX.ShowNotification(Text, Type)
    if Type == nil or Type == "info" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "info")
    elseif Type == "success" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "success")
    elseif Type == "warning" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "warning")
    elseif Type == "error" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "error")
    end
end
```

Redémarre le serveur pour bien appliqué dans votre `es_extended`
