qs-inventory
Images:
Go to
dynyx_chopshop\images
and copy all the imagesLocate the
qs-inventory\html\images
folderAnd paste all the images in there
Items:
Copy the following code
Go to the bottom of
qs-inventory\shared\items.lua
Paste all the items before the last
}
['cardoor'] = {
['name'] = 'cardoor',
['label'] = 'Vehicle Door',
['weight'] = 2500,
['type'] = 'item',
['image'] = 'cardoor.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A car door'
},
['carhood'] = {
['name'] = 'carhood',
['label'] = 'Vehicle Hood',
['weight'] = 2500,
['type'] = 'item',
['image'] = 'carhood.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A car hood'
},
['cartrunk'] = {
['name'] = 'cartrunk',
['label'] = 'Vehicle Trunk',
['weight'] = 2500,
['type'] = 'item',
['image'] = 'cartrunk.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A car trunk'
},
['carwheel'] = {
['name'] = 'carwheel',
['label'] = 'Vehicle Wheel',
['weight'] = 2500,
['type'] = 'item',
['image'] = 'carwheel.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A car wheel'
},
Last updated