Customization
Dispatch Event
RegisterNetEvent("av_runs:sendDispatch", function(vehicle)
-- Your dispatch event/export goes here:
-- This example is only for ps-dispatch (make sure to read the docs first)
if Config.Debug then
print("Dispatch triggered")
end
if GetResourceState("ps-dispatch") ~= "missing" then
exports['ps-dispatch']:VehicleShooting(vehicle)
end
end)Hacking Minigame
function hackingMinigame()
local result = true
if GetResourceState('bl_ui') == "started" then
result = exports.bl_ui:PrintLock(3, {
grid = 4,
duration = 20000,
target = 4
})
end
return result
endVehicle Keys
Set Fuel
Notifications
Last updated