📦Dead Drops

Dependencies
Ensure that you have the dependencies below downloaded and ensured in your resources.
Ox Lib: https://github.com/overextended/ox_lib/releases
Renewed Lib: https://github.com/Renewed-Scripts/Renewed-Lib/releases/tag/v2.0.7
Renewed Weaponcarry: https://github.com/Renewed-Scripts/Renewed-Weaponscarry/releases/tag/v2.5.2
Bl Dialog: https://github.com/Byte-Labs-Studio/bl_dialog
Prop [Free]: https://bzzz.tebex.io/package/5619362
Installation
Add the following in ox_inventory > data > items.lua
-- Kevin DeadDrop Items
['kevin_deaddrop_cannabis_bag'] = {
label = 'Cannabis Bag',
weight = 4500,
stack = false,
close = true,
description = "A bag containing cannabis",
client = {
image = 'cannabis2_type1.png',
}
},
['kevin_deaddrop_cocaine_bag'] = {
label = 'Cocaine Bag',
weight = 5500,
stack = false,
close = true,
description = "A bag containing cocaine",
},
['kevin_deaddrop_pills_bag'] = {
label = 'Pills Bag',
weight = 500,
stack = false,
close = true,
description = "A bag containing pills",
},Qb | Ps Inventory
Add the following in qb-core > shared > items.lua
kevin_deaddrop_cannabis_bag = { name = 'kevin_deaddrop_cannabis_bag', label = 'Cannabis Bag', weight = 4500, type = 'item', image = 'cannabis2_type1.png', unique = true, useable = true, shouldClose = true, description = 'A bag containing cannabis' },
kevin_deaddrop_cocaine_bag = { name = 'kevin_deaddrop_cocaine_bag', label = 'Cocaine Bag', weight = 5500, type = 'item', image = 'kevin_deaddrop_cocaine_bag.png', unique = true, useable = true, shouldClose = true, description = 'A bag containing cocaine' },
kevin_deaddrop_pills_bag = { name = 'kevin_deaddrop_pills_bag', label = 'Pills Bag', weight = 500, type = 'item', image = 'kevin_deaddrop_pills_bag.png', unique = true, useable = true, shouldClose = true, description = 'A bag containing pills'},Reputation Metadata
Qbox
Add the following to qbx_core > server > player.lua (anywhere below line 451)
playerData.metadata.kevindeaddrops = playerData.metadata.kevindeaddrops or 0Qbcore
Add the following to qb-core > config.lua (within the metadata code block on line 62)
kevindeaddrops = 0,🎉 Installation Completed. Next step is just customization/adjusting config files to you liking
Last updated