# Items

### ox\_inventory

Add this to `ox_inventory/data/items.lua`:

```lua
["handcuffs"] = {
        label = "Kelepçe",
        weight = 100,
        stack = true,
        close = true,
        description = "Kelepçe",
		client = {
			export = 'frkn-policejob.useHandcuff'
		}
	},

	["cuffkeys"] = {
		label = "Kelepçe Anahtarı",
		weight = 75,
		stack = true,
		close = true,
		description = "Kelepçe Anahtarı",
		client = {
			export = 'frkn-policejob.cuffKeys'
		},
	},
```

***

### qb-core

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

```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 !'},

```
