~/docs/heist-atm/configuration/police-alert
heist atm docs›
Heist ATM
Police Alert
-- 2 code blocks · 1 min read
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)