Items
🎥 Bodycam Items
Add the following items to your inventory system to enable the Police Bodycam and Bodycam Dashboard features.
📦 ox_inventory
ox_inventory/data/items.lua
['body_cam'] = {
label = 'Bodycam for Police',
weight = 1000,
client = { image = 'bodycam.png' },
},
['bodycam_dashboard'] = {
label = 'Police Bodycam Dashboard',
weight = 1000,
client = { image = 'bodycam_dashboard.png' },
},
📦 qb-core
qb-core/shared/items.lua
body_cam = {
name = 'body_cam',
label = 'Bodycam for Police',
weight = 1000,
type = 'item',
image = 'bodycam.png',
unique = true,
useable = true,
shouldClose = true,
description = 'A body camera used by police officers for recording.',
},
bodycam_dashboard = {
name = 'bodycam_dashboard',
label = 'Police Bodycam Dashboard',
weight = 1000,
type = 'item',
image = 'bodycam_dashboard.png',
unique = true,
useable = true,
shouldClose = true,
description = 'Dashboard to view connected bodycams.',
},
Last updated