Vehicle spawned
Event
AddEventHandler("jobs_creator:permanent_garage:vehicleSpawned", function(vehicle, vehicleName, vehiclePlate)
end)Parameters
Name
Data Type
Description
Example
AddEventHandler("jobs_creator:permanent_garage:vehicleSpawned", function(vehicle, vehicleName, vehiclePlate)
-- Example to give keys to the vehicle (you may have a TriggerEvent to use, that's up to you)
giveKeysToVehicle(vehicle)
print(vehicleName) -- Example output 'adder'
end)Last updated