Config.GetVehFuel = function(Veh)
return GetVehicleFuelLevel(Veh)-- exports["LegacyFuel"]:GetFuel(Veh)
end
3. Framework Integration
A function to integrate the script with different frameworks like ESX, NewESX, and QBCore.
function GetFramework()
local Get = nil
if Config.Framework == "ESX" then
while Get == nil do
TriggerEvent('esx:getSharedObject', function(Set) Get = Set end)
Citizen.Wait(0)
end
end
if Config.Framework == "NewESX" then
Get = exports['es_extended']:getSharedObject()
end
if Config.Framework == "QBCore" then
Get = exports["qb-core"]:GetCoreObject()
end
if Config.Framework == "OldQBCore" then
while Get == nil do
TriggerEvent('QBCore:GetObject', function(Set) Get = Set end)
Citizen.Wait(200)
end
end
return Get
end
4. Blip Creation
A function to create blips on the map for each car shop location.
EYES = {}
EYES.Functions = {
CreateBlips = function()
for k,v in pairs(Config.Locations) do
local blip = AddBlipForCoord(v.coords)
SetBlipSprite(blip, 380)
SetBlipScale(blip, 0.5)
SetBlipAsShortRange(blip, true)
SetBlipColour(blip, 2)
BeginTextCommandSetBlipName("STRING")
AddTextComponentString("Rent")
EndTextCommandSetBlipName(blip)
end
end
}
5. Vehicle Key Management
A function to manage vehicle keys.
Config.Carkeys = function(Plate)
TriggerEvent('vehiclekeys:client:SetOwner', Plate)
end
6. Vehicle Options
List of vehicles available for purchase, including their label, description, price, model, and size.
This guide helps you configure car shops in your FiveM server by providing detailed examples for general configuration, shop locations, vehicle options, and other customization settings. Customize each section to fit your server's needs and integrate these configurations into your GitBook documentation for clear and comprehensive instructions for your users.