Configuration

Config.lua

-----------------------------------
--          FIVE | CODE          --
-----------------------------------

Config = {}

Config.Locale = "pl" -- Set your language u can add custom languages in /locales

Config.SpawnVehicle = true  -- TRUE if you want spawn vehicle when buy

Config.PlateLetters  = 4
Config.PlateNumbers  = 4
Config.PlateUseSpace = false

Config.TestDriveTime = 30   -- TIME in SEC

Config.Notify = 'esx' -- esx or ox

Config.CarDealers = {
    ['pdm'] = {

        categories = { -- name from vehicle_categories in your database
            all = true, -- leave it as it true
            Coupes = false,
            Lowrider = false,
            Motory = true,
            Offroad = false,
            Sedans = false,
            Sportowe = false,
            Supersamochody = false,
            SUVY = false,
        },

        blip = {
            title="Car Dealer", 
            colour = 0, 
            id = 523, 
            scale = 0.8, 
            x = -31.42583656311, 
            y = -1098.4348144531, 
            z = 27.274436950684  
        },

        ped = {
            debug = false, -- Target Debug
            model = 'ig_siemonyetarian',
            x = -31.42583656311, 
            y = -1098.4348144531, 
            z = 27.274436950684, 
            h = 70.0
        },

        translation = { -- Target Translations
            label = 'Open Vehicle Shop',
            icon = 'fas fa-car',
        },

        CarPreview = { -- Place where vehicle spawn while preview
            x = -47.436683654785, 
            y = -1092.0236816406, 
            z = 27.302286148071, 
            h = 340.0
        },

        VehicleSpawn = { --Place where vehicles spawn after purchase
            x = -9.8375797271729,
            y = -1080.8327636719,
            z = 27.047222137451,
            h = 160.0
        },

        CameraPosition = {
            x = -46.188510894775, 
            y = -1087.3864746094, 
            z = 27.302286148071, 
            h = 160.0
        }
    },
}

Last updated