Items

ox_inventory

Add this to ox_inventory/data/items.lua:

["handcuffs"] = {
        label = "Handcuffs",
        weight = 100,
        stack = true,
        close = true,
        description = "Comes in handy when people misbehave. Maybe it can be used for something else?",
},

["cuffkeys"] = {
    label = "Cuff Keys",
    weight = 75,
    stack = true,
    close = true,
    description = "Set them free !",
},

qb-core

Add this to qb-core/shared/items.lua:

    handcuffs = {name = 'handcuffs',label = 'Handcuffs',weight = 100,type = 'item',image = 'handcuffs.png',unique = false,useable = true,shouldClose = true,description = 'Comes in handy when people misbehave. Maybe it can be used for something else?',},

    cuffkeys = {name = 'cuffkeys',label = 'Cuff Keys',weight = 75,type = 'item',image = 'cuffkeys.png',unique = false,useable = true,shouldClose = true,description = 'Set them free !',},

Last updated