Discord for Support : https://discord.gg/6FTXP9e4P7
This is a customized version of qb-inventory for the QBCore framework. It introduces major improvements:
- πΈ Cash as an inventory item
- π Back item props for immersive carrying visuals
- π₯οΈ A redesigned, modern UI
- β
Cash is now a physical item (
cash) that can be dropped, traded, or stored in inventory. - β Items like bags, large tools, and certain weapons show props on the player's back when carried.
- β Fully redesigned and responsive inventory UI.
- Replace your existing
qb-inventorywith this modified version. - Add the
cashitem to your shared items inqb-core/shared/items.lua.
In your qb-core/shared/items.lua, insert the following:
['cash'] = {
name = 'cash',
label = 'Cash',
weight = 0,
type = 'item',
image = 'money.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'Some loose cash you can carry or trade.',
stack = true,
close = true,
server = false
},