> For the complete documentation index, see [llms.txt](https://documentation.jaksam-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.jaksam-scripts.com/luxury-clothes-theft/client/replace-default-notifications.md).

# Replace default notifications

Triggered after notifying player client side

## Event

```lua
AddEventHandler("luxury_clothes_theft:notify", function(message, uncoloredMessage)

end)
```

### Parameters

| Name               | Data Type | Description                                                        |
| ------------------ | --------- | ------------------------------------------------------------------ |
| `message`          | string    | Message of the notification                                        |
| `uncoloredMessage` | string    | Message of the notification but without \~r\~, \~g\~\~\~\~\~, etc. |

## Example

```lua
RegisterNetEvent("luxury_clothes_theft:framework:ready", function() 
    -- Disables the default script notification (otherwise there would be 2 notifications)
    exports["luxury_clothes_theft"]:disableScriptEvent("luxury_clothes_theft:notify")
end)

RegisterNetEvent("luxury_clothes_theft:notify", function(message, uncoloredMessage)
    TriggerEvent("external_script:notify", message)
end)
```

## Where to insert the code?

You can place it in the file `integrations/cl_integrations.lua` of the script, **at the bottom of the file on new lines**
