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

Listeners

tuningState(state)

Use the following function to listen when a client enters/leaves a tuning shop

client/_editable/_functions.lua
function tuningState(state)

end

av_tuning:state

This event is triggered when a player enters/leaves a tuning shop, just like tuningState but this is an event you can listen to directly from your scripts.

RegisterNetEvent("av_tuning:state", function(state)
    -- do something here
end)

Last updated