📦Dead Drops

Dependencies

Ensure that you have the dependencies below downloaded and ensured in your resources.

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 0

Qbcore

Add the following to qb-core > config.lua (within the metadata code block on line 62)

kevindeaddrops = 0,

Last updated