Installation
Dependencies
QBCore Framework ox_lib qb-menu qb-inventory (Custom Inventory possible) ps-dispatch - (Custom dispatch possible) (https://github.com/Project-Sloth/ps-dispatch)
How to install
Add the following item to yourinventory/data/items.lua
QBCore users to qbcore/shared/items.lua
Add the item image to your inventory/images
-- Meth Car
['acetone'] = {
['name'] = 'acetone',
['label'] = 'Acetone',
['weight'] = 300,
['type'] = 'item',
['image'] = 'acetone.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Acetone'
},
['hydrochloricacid'] = {
['name'] = 'hydrochloricacid',
['label'] = 'Hydrochloric Acid',
['weight'] = 500,
['type'] = 'item',
['image'] = 'hydrochloricacid.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Hydrochloric Acid'
},
['ephedrine'] = {
['name'] = 'ephedrine',
['label'] = 'Ephedrine',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'ephedrine.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Ephedrine'
},
Last updated