- Item Doubling Exploit Fixed
- Right Click To Use Item
- Right Click To Give Item
- Givem Item on Specific Player ID (Optional change in Config.lua)
- Player Stats on Inventory Section (Optional change in Config.lua)
- Server Logo in Inventory Section (Optional change in Config.lua)
- User PC Real Time in Inventory Section (Optional change in Config.lua)
- Clean UI & Optimized
- Runs at ~ 0.00 to 0.01 ms
- Blurred inventory background
- Weight progress bar
- ALL Images follow the same Dimensions (100px X 100px)
- Decay System
- Download your Asset from (https://keymaster.fivem.net/asset-grants)
- Delete the old Inventory Folder from your directory.
- Make sure you have the latest update of qb-core
- Make sure you have the latest update of qb-smallresources
- Make sure you have the latest update of qb-weapons
- Drag ef-inventory into your resources folder
- Make sure that the folder is named ef-inventory
- Replace all occurrences of qb-inventory with ef-inventory The example below uses Visual Studio Code to replace all instances.
Add the Decay Value In qb-core/shared/items.lua
Decay Value in core (the variable stands for the number of days it takes to decay)
["decay"] = 28.0,
you can also add Delete System to delete the item after the decay time
["delete"] = true
['battery'] = {['name'] = 'battery', ['label'] = 'Battery', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'battery.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Battery to charge you Devices', ["decay"] = 3.0, ["delete"] = true},