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