> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nonefivem.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Indicators

## Default Indicators

<div><figure><img src="https://1876263925-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fozxk74pWmD6se2ngcbSg%2Fuploads%2FDA5NEoberil03PpFWswH%2FEkran%20g%C3%B6r%C3%BCnt%C3%BCs%C3%BC%202023-08-09%20081602.png?alt=media&token=a4e39014-77cf-473b-80f1-c342353c21ae" alt="default indicators" width="120" /><figcaption><p>Indicators</p></figcaption></figure> <figure><img src="https://1876263925-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fozxk74pWmD6se2ngcbSg%2Fuploads%2FTsJnJARlrCHdpJxfOkpu%2FEkran%20g%C3%B6r%C3%BCnt%C3%BCs%C3%BC%202023-08-09%20081726.png?alt=media&token=1a1f0eff-d3ed-497b-9a4e-3cf631bd1544" alt="default indicator" /><figcaption><p>Indicator</p></figcaption></figure></div>

You can override default behavior from `no-base/configure/client/alerts.lua`

#### [Indicator Data](/no-alerts/indicator-usage#indicator)

```lua theme={null}
Config.Alerts = {
    setIndicator = function(indicator)
        TriggerEvent("indicator:show", indicator)
    end,
    setIndicators = function(indicators)
        TriggerEvent("indicators:show", indicators)
    end,
    closeIndicator = function()
        TriggerEvent("indicator:hide")
    end,
    closeIndicators = function()
        TriggerEvent("indicators:hide")
    end
}
```
