> For the complete documentation index, see [llms.txt](https://doc.var-fivem.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.var-fivem.com/heist-atm/configuration/police-alert.md).

# Police alert

{% hint style="info" %}
If you want to use police alerts I advise you to use vdk\_call
{% endhint %}

```lua
RegisterNetEvent("Var:NotifPoliceATM")
AddEventHandler("Var:NotifPoliceATM", function(Coords)
    print(Coords)
end)
```

And replace like that if you want to use vdk\_call

```lua
RegisterNetEvent("Var:NotifPoliceATM")
AddEventHandler("Var:NotifPoliceATM", function(Coords)
    TriggerServerEvent("call:makeCall", "police", Coords)
end)
```
