> For the complete documentation index, see [llms.txt](https://bluen-store.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bluen-store.gitbook.io/docs/cinema-system/frameworks/client-guide.md).

# Client guide

Make sure to check the qb.lua and esx.lua files for examples on how to implement the script for your framework. They are always up to date with the latest changes.

## Framework event

### Notify

***

This event is used to synchronize cinema notifications with your city's notification system.

{% code fullWidth="false" %}

```lua
-- This is an example from the brnx-cinemasystem esx.lua file

-- @param css: string
-- @param message: string
-- @param timer: number
RegisterNetEvent('brnx-cinemasystem:notify', function(css, message, timer)
    local types = {
        ['denied'] = 'error',
        ['success'] = 'success',
        ['important'] = 'info',
        ['alert'] = 'info'
    }

    exports.esx_notify:Notify(types[css], timer, message)
end)
```

{% endcode %}
