For the complete documentation index, see llms.txt. This page is also available as Markdown.

Integrate external impound script

Triggered when a vehicle is impounded

Event

AddEventHandler("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)

end)

Parameters

Name
Data Type
Description

vehiclePlate

string

The vehicle plate

vehicleModel

string

The vehicle model

Example

RegisterNetEvent("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)
    -- You can add your impound script exports here
    TriggerServerEvent("impound_script:impoundVehicle", vehiclePlate, vehicleModel)
end)

Last updated