Configuration
All configuration is in `config.lua`.
Framework
Config.Framework = "qb" -- "esx" | "qb" | "qbox"Inventory Settings
Config.Defaults = {
['player'] = { width = 10, height = 10, maxWeight = 200000 },
['drop'] = { width = 10, height = 10, maxWeight = 100000 },
['stash'] = { width = 20, height = 20, maxWeight = 500000 }
}Hotbar
Config.ShowHotbarOnInventoryClosed = true
Config.HotbarScrollCycle = trueVehicle Storage
Config.VehicleStorage = {
SaveNPCVehicle = true,
Glovebox = {
width = 4,
height = 3,
maxWeight = 10000
},
TrunkSizes = {
[0] = { width = 6, height = 4, maxWeight = 50000 }, -- Compacts
[1] = { width = 8, height = 5, maxWeight = 80000 }, -- Sedans
[2] = { width = 10, height = 6, maxWeight = 150000 }, -- SUVs
[3] = { width = 6, height = 4, maxWeight = 50000 }, -- Coupes
[4] = { width = 8, height = 5, maxWeight = 80000 }, -- Muscle
[5] = { width = 6, height = 4, maxWeight = 60000 }, -- Sports Classics
[6] = { width = 5, height = 3, maxWeight = 40000 }, -- Sports
[7] = { width = 4, height = 2, maxWeight = 30000 }, -- Super
[8] = { width = 0, height = 0, maxWeight = 0 }, -- Motorcycles
[9] = { width = 12, height = 6, maxWeight = 200000 }, -- Off-road
[10] = { width = 8, height = 5, maxWeight = 100000 }, -- Industrial
[11] = { width = 15, height = 10, maxWeight = 500000 },-- Utility
[12] = { width = 20, height = 10, maxWeight = 800000 },-- Vans
}
}Logging
Last updated