# 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)
```
