- Make the inventory fade in/out
- Return the Use, Give & Drop functions in the middle from the old inv
(Any help is appreciated)
- qb-core
- qb-smallresources - For logging transfer and other history
- Stashes (Personal and/or Shared)
- Vehicle Trunk & Glovebox
- Weapon Attachments
- Shops
- Item Drops
- Added glow and zoom when you hover over an item
- Added the scrollbar back
- Added an entire black transparent background color
- Added nl.lua
- Made the item background color a bit darker
- Made the shop price more bold and bigger
- Added glow in submenu
- Changed to linear transitions
- More color changes
- Changed hotbar label color
- Lifted the hotbar label to reveal durability
- Brightened the radial-gradient in item-slot
https://docs.qbcore.org/qbcore-documentation/qbcore-resources/qb-inventory
- Download the script and put it in the
[qb]
directory. - Import
qb-inventory.sql
in your database - Add the following code to your server.cfg/resouces.cfg
Use the provided migrate.sql
file to migrate all of your saved inventory data from stashes, trunks, etc
CREATE TABLE IF NOT EXISTS `inventories` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`identifier` VARCHAR(50) NOT NULL,
`items` LONGTEXT DEFAULT ('[]'),
PRIMARY KEY (`identifier`),
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
QBCore Framework
Copyright (C) 2021 Joshua Eger
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>