🎉 Driving School is released. Read more →
Paid Scripts
License Manager
Integrations
Inventory Scripts
qs-inventory

qs-inventory

Add this to your qs-inventory/shared/items.lua. These are only examples, please add the rest yourself.

    -- License Manager
    ['driver_car']                   = {
        ['name'] = 'driver_car',
        ['label'] = 'Car License',
        ['weight'] = 0,
        ['type'] = 'item',
        ['image'] = 'driver_license.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = false,
        ['combinable'] = nil,
        ['description'] = 'Permit to show you can drive a vehicle'
    },
    ['driver_truck']                 = {
        ['name'] = 'driver_truck',
        ['label'] = 'Truck License',
        ['weight'] = 0,
        ['type'] = 'item',
        ['image'] = 'driver_license.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = false,
        ['combinable'] = nil,
        ['description'] = 'Permit to show you can drive a vehicle'
    },
    ['driver_bike']                  = {
        ['name'] = 'driver_bike',
        ['label'] = 'Bike License',
        ['weight'] = 0,
        ['type'] = 'item',
        ['image'] = 'driver_license.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = false,
        ['combinable'] = nil,
        ['description'] = 'Permit to show you can drive a vehicle'
    },
    ['dmv']                          = {
        ['name'] = 'dmv',
        ['label'] = 'Drivers License',
        ['weight'] = 0,
        ['type'] = 'item',
        ['image'] = 'driver_license.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = false,
        ['combinable'] = nil,
        ['description'] = 'Permit to show you can drive a vehicle'
    },
    ['weapon']                       = {
        ['name'] = 'weapon',
        ['label'] = 'Weapon License',
        ['weight'] = 0,
        ['type'] = 'item',
        ['image'] = 'weapon_license.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = false,
        ['combinable'] = nil,
        ['description'] = 'Weapon License'
    },
    ['identification']               = {
        ['name'] = 'identification',
        ['label'] = 'Identification Card',
        ['weight'] = 0,
        ['type'] = 'item',
        ['image'] = 'id_card.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = false,
        ['combinable'] = nil,
        ['description'] = 'A card containing all your information to identify yourself'
    },