# origen\_police

origen\_police/custom/client/menu.lua

```lua
function ShowNotification(msg)
    if not Config.CustomNotify then
        if Config.Framework == "qbcore" then
            exports['reaver_notify']:reaver_notify_showNotification(msg, "primary", 4000)
           -- Framework.Functions.Notify(msg, "primary")
        elseif Config.Framework == "esx" then
            Framework.ShowNotification(msg)
        end
        return
    end
    -- Put your code here if you want to use a custom notification
end
```


---

# 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://reaver-dev.gitbook.io/reaver-docs/notify-v2/integrations/origen_police.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.
