qs-inventory

Images:

  1. Go to dynyx_chopshop\images and copy all the images

  2. Locate the qs-inventory\html\images folder

  3. And paste all the images in there

Items:

  1. Copy the following code

  2. Go to the bottom of qs-inventory\shared\items.lua

  3. 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