👮Police alert

If you want to use police alerts I advise you to use vdk_call

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

And replace like that if you want to use vdk_call

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

Last updated