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 = 'Polis Bodycam',
		weight = 1000,
		client = { 
			image = 'bodycam.png' ,
			export = 'frkn-bodycam.bodyCam'
		},
	}, 

πŸ“¦ 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.',
    client = { 
			image = 'bodycam.png' ,
			export = 'frkn-bodycam.bodyCam'
		},
},

Last updated