Integrate external impound script
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
Triggered when a vehicle is impounded
AddEventHandler("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)
end)
vehiclePlate
string
The vehicle plate
vehicleModel
string
The vehicle model
RegisterNetEvent("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)
-- You can add your impound script exports here
TriggerServerEvent("impound_script:impoundVehicle", vehiclePlate, vehicleModel)
end)