💻
DevM
  • Home
  • Fraud V2
    • Installation
      • ox_inventory
      • qb-inventory
      • qs-inventory
    • Note for QBOX
    • Common Issues
  • Fraud
    • Installation
      • ox_inventory
      • qs-inventory
      • qb-inventory
    • Common Issues
  • Snatchables
    • Installation
  • Process Drugs
    • Installation
  • Parking
    • Installation
  • EBT Card
    • Installation
    • Common Issues
  • Lacing
    • Installation
  • Bridge
    • Client-Side
    • Server-Side
Powered by GitBook
On this page
  1. Fraud V2
  2. Installation

qs-inventory

  1. Install the following items into either qb-core/shared/items.lua (for qb users) or qs-inventory/shared/items.lua (for esx users) respective to your framework

    ['fraud_laptop'] = {
        name = 'fraud_laptop',
        label = 'Laptop',
        weight = 2000,
        type = 'item',
        image = 'fraud_laptop.png',
        unique = false,
        useable = true,
        shouldClose = true,
        description = 'A laptop for fraud'
    },
    ['card_writer'] = {
        name = 'card_writer',
        label = 'MSR 605x',
        weight = 500,
        type = 'item',
        image = 'card_writer.png',
        unique = false,
        useable = true,
        shouldClose = true,
        description = 'A card reader'
    },
    ['5g_adapter'] = {
        name = '5g_adapter',
        label = '5G Adapter',
        weight = 500,
        type = 'item',
        image = '5g_adapter.png',
        unique = false,
        useable = false,
        description = 'A cell adapter to get your laptop connected to the internet!'
    },
    ['blank_card'] = {
        name = 'blank_card',
        label = 'Blank Card',
        weight = 500,
        type = 'item',
        image = 'blank_card.png',
        unique = false,
        useable = false,
        description = 'A blank debit card.'
    },
    ['written_card'] = {
        name = 'written_card',
        label = 'Written Card',
        weight = 500,
        type = 'item',
        image = 'written_card.png',
        unique = true,
        useable = false,
        description = 'A stolen debit card.'
    },
    ['blank_sim'] = {
        name = 'blank_sim',
        label = 'Blank SIM',
        weight = 500,
        type = 'item',
        image = 'blank_sim.png',
        unique = false,
        useable = false,
        description = 'A blank sim card.'
    },
    ['written_sim'] = {
        name = 'written_sim',
        label = 'Written SIM',
        weight = 500,
        type = 'item',
        image = 'written_sim.png',
        unique = true,
        useable = false,
        description = 'A written sim card.'
    },
  1. Drag all the images from item_images into qs-inventory/html/images

Previousqb-inventoryNextNote for QBOX

Last updated 3 months ago