qs-inventory
Inventory Items
Navigate to qs-inventory/shared/items.lua (ESX) or qb-core/shared/items.lua (QB-Core) and paste the following lines. *Note: There may already be a laptop item. Feel free to remove it and replace it with ours.
-- DEVM FRAUD
['laptop'] = {
name = 'laptop',
label = 'Laptop',
weight = 2000,
type = 'item',
image = 'laptop.png',
unique = false,
useable = true,
shouldClose = true,
description = 'A laptop for fraud'
},
['msr605x'] = {
name = 'msr605x',
label = 'MSR 605x',
weight = 500,
type = 'item',
image = 'msr605x.png',
unique = false,
useable = true,
shouldClose = true,
description = 'A card reader'
},
['cell_adapter'] = {
name = 'cell_adapter',
label = 'Cellular Adapter',
weight = 500,
type = 'item',
image = 'cell_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.'
},
Last updated