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

QBCore

Configuration

In config.lua look for option Config.InventorySystem and set the value to Inventory.QB The final result should look like this: Config.InventorySystem = Inventory.QB

Item list

	['vehicle_manual'] = { ['name'] = 'vehicle_manual', ['label'] = 'Vehicle manual', ['weight'] = 50, ['type'] = 'item', ['image'] = 'vehicle_manual.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Manual from vehicle' },
	['fuel_pump'] = { ['name'] = 'fuel_pump', ['label'] = 'Fuel pumper', ['weight'] = 10000, ['type'] = 'item', ['image'] = 'fuel_pump.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'will pump out all the fuel from the car' },
	['window_cleaner'] = { ['name'] = 'window_cleaner', ['label'] = 'windows cleaner', ['weight'] = 50, ['type'] = 'item', ['image'] = 'window_cleaner.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'will clean car windows' },

Images

The items are packed together in 📁rcore_fuel.pack.zipin folder called 📁image items.

Last updated