Custom Dispatches
Integrating with a Different Dispatch System
Templates.Action["Fake Gunshot decoy"] = function()
if GetResourceState("kibra-dispatch") == "started" then
exports["kibra-dispatch"]:SendAlert("Gunshot", "10-60", "fa-vehicle", {"police"}, 3)
end
end
Templates.Action["Fake EMS decoy"] = function()
if GetResourceState("kibra-dispatch") == "started" then
exports["kibra-dispatch"]:SendAlert("Injured civilian", "10-60", "fa-vehicle", {"ambulance"}, 3)
end
endNotes
Last updated