Listeners
Last updated
Use the following function to listen when a client enters/leaves a tuning shop
function tuningState(state)
endThis 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