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

Installation

Dependencies:

Frameworks

In order to apply all vehicle mods correctly, you need to trigger the Get/SetVehicleProperties exports from AV Tuning

For QBCore:

-- Go to qb-core/client/functions.lua
-- Search the function QBCore.Functions.GetVehicleProperties (line 417 - 570) and delete it.
-- Search the function QBCore.Functions.SetVehicleProperties (line 572 - 865) delete it too.
-- Place this two exports in the file and save it:

function QBCore.Functions.GetVehicleProperties(vehicle)
    return exports['av_tuning']:GetVehicleProperties(vehicle)
end

function QBCore.Functions.SetVehicleProperties(vehicle, props)
    return exports['av_tuning']:SetVehicleProperties(vehicle, props)
end

For ESX:

For Qbox:

Please be aware that some garage scripts decides to ignore the Framework Get/SetVehicleProperties functions, ask the garage script if their set/get function are available for edit, that way you can add the Tuning exports, otherwise this script will not work as intended.

Last updated