> For the complete documentation index, see [llms.txt](https://docs.wise-scripts.vip/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wise-scripts.vip/scripts/wise-notify/esx-replacements.md).

# ESX Replacements

## Replace ShowNotification

1. Open Directory <mark style="color:red;">`client/`</mark>
2. Open File <mark style="color:red;">`functions.lua`</mark>
3. Search for <mark style="color:red;">`ESX.ShowNotification`</mark> (STRG+F)
4. Replace function with example the below

```lua
function ESX.ShowNotification(message, type, length)
    exports.wise_notify:Notify(type, "Information", message, length)
end
```

## Replace ShowHelpNotification

1. Open Directory <mark style="color:red;">`client/`</mark>
2. Open File <mark style="color:red;">`functions.lua`</mark>
3. Search for <mark style="color:red;">`ESX.ShowHelpNotification`</mark> (STRG+F)
4. Replace function with the example below

```lua
function ESX.ShowHelpNotification(msg, thisFrame, beep, duration)
    exports.wise_notify:HelpNotify(msg)
end
```
