The script is a qbcore add-on designed for camera security systems in gaming environments. It enhances surveillance capabilities by allowing players to monitor various locations through cameras, improving security and situational awareness within the game. Features may include live feeds, recording options, and integration with other security measures. Overall, it provides an engaging tool for players to enhance their gameplay experience related to security and surveillance.
Voorbeeld
- Download ZIP and UNZIP.
- Drag and drop resource into your server files, make sure to remove -main in the folder name.
- SQL Automatic added to your database no need to add manually.
- add images from folder (install/item-images) naar Inventory Images Location.
Be careful, if you are use ox_voorraad
in QBCore framework dont add items in qb-kern
resource, require to add items in ox_inventory/data/items.lua
ONLY.
-- // Cameras
camera_pd = {name = 'camera_pd', label = 'PD Camera', weight = 3000, type = 'item', image = 'camera_pd.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = ''},
camera_ems = { name = 'camera_ems', label = 'EMS Camera', weight = 3000, type = 'item', image = 'camera_ems.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_citizen = { name = 'camera_citizen', label = 'Camera', weight = 3000, type = 'item', image = 'camera_citizen.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_viewer = { name = 'camera_viewer', label = 'Camera Viewer', weight = 1000, type = 'item', image = 'camera_viewer.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_paper = { name = 'camera_paper', label = 'Camera Signal Paper', weight = 200, type = 'item', image = 'camera_paper.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_tablet = { name = 'camera_tablet', label = 'CamView Tablet', weight = 2000, type = 'item', image = 'camera_tablet.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_personaltablet = { name = 'camera_personaltablet', label = 'Personal CamView', weight = 2000, type = 'item', image = 'camera_personaltablet.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_personal = { name = 'camera_personal', label = 'Personal Camera', weight = 3000, type = 'item', image = 'camera_personal.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
vpn = {name = 'vpn', label = 'VPN Router', weight = 1000, type = 'item', image = 'vpn.png', unique = true, useable = false, shouldClose = false, combinable = nil, description = ''},
-- // Cameras
camera_pd = {name = 'camera_pd', label = 'PD Camera', weight = 3000, type = 'item', image = 'camera_pd.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = ''},
camera_ems = { name = 'camera_ems', label = 'EMS Camera', weight = 3000, type = 'item', image = 'camera_ems.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_citizen = { name = 'camera_citizen', label = 'Camera', weight = 3000, type = 'item', image = 'camera_citizen.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_viewer = { name = 'camera_viewer', label = 'Camera Viewer', weight = 1000, type = 'item', image = 'camera_viewer.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_paper = { name = 'camera_paper', label = 'Camera Signal Paper', weight = 200, type = 'item', image = 'camera_paper.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_tablet = { name = 'camera_tablet', label = 'CamView Tablet', weight = 2000, type = 'item', image = 'camera_tablet.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_personaltablet = { name = 'camera_personaltablet', label = 'Personal CamView', weight = 2000, type = 'item', image = 'camera_personaltablet.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
camera_personal = { name = 'camera_personal', label = 'Personal Camera', weight = 3000, type = 'item', image = 'camera_personal.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = '' },
vpn = {name = 'vpn', label = 'VPN Router', weight = 1000, type = 'item', image = 'vpn.png', unique = true, useable = false, shouldClose = false, combinable = nil, description = ''},
-- // Cameras
["camera_pd"] = {
["name"] = 'camera_pd',
["label"] = 'PD Camera',
["weight"] = 3000,
["type"] = 'item',
["image"] = 'camera_pd.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["camera_ems"] = {
["name"] = 'camera_ems',
["label"] = 'EMS Camera',
["weight"] = 3000,
["type"] = 'item',
["image"] = 'camera_ems.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["camera_citizen"] = {
["name"] = 'camera_citizen',
["label"] = 'Camera',
["weight"] = 3000,
["type"] = 'item',
["image"] = 'camera_citizen.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["camera_viewer"] = {
["name"] = 'camera_viewer',
["label"] = 'Camera Viewer',
["weight"] = 1000,
["type"] = 'item',
["image"] = 'camera_viewer.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["camera_paper"] = {
["name"] = 'camera_paper',
["label"] = 'Camera Signal Paper',
["weight"] = 200,
["type"] = 'item',
["image"] = 'camera_paper.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["camera_tablet"] = {
["name"] = 'camera_tablet',
["label"] = 'CamView Tablet',
["weight"] = 2000,
["type"] = 'item',
["image"] = 'camera_tablet.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["camera_personaltablet"] = {
["name"] = 'camera_personaltablet',
["label"] = 'Personal CamView',
["weight"] = 2000,
["type"] = 'item',
["image"] = 'camera_personaltablet.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["camera_personal"] = {
["name"] = 'camera_personal',
["label"] = 'Personal Camera',
["weight"] = 3000,
["type"] = 'item',
["image"] = 'camera_personal.png',
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = ''
},
["vpn"] = {
["name"] = 'vpn',
["label"] = 'VPN Router',
["weight"] = 1000,
["type"] = 'item',
["image"] = 'vpn.png',
["unique"] = true,
["useable"] = false,
["shouldClose"] = false,
["combinable"] = nil,
["description"] = ''
}
['camera_pd'] = {
label = 'PD Camera',
weight = 3000,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_pd'
},
client = {
image = 'camera_pd.png',
}
},
['camera_ems'] = {
label = 'EMS Camera',
weight = 3000,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_ems'
},
client = {
image = 'camera_ems.png',
}
},
['camera_citizen'] = {
label = 'Camera',
weight = 3000,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_citizen'
},
client = {
image = 'camera_citizen.png',
}
},
['camera_viewer'] = {
label = 'Camera Viewer',
weight = 1000,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_viewer'
},
client = {
image = 'camera_viewer.png',
}
},
['camera_paper'] = {
label = 'Camera Signal Paper',
weight = 200,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_paper'
},
client = {
image = 'camera_paper.png',
}
},
['camera_tablet'] = {
label = 'CamView Tablet',
weight = 2000,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_tablet'
},
client = {
image = 'camera_tablet.png',
}
},
['camera_personal'] = {
label = 'Personal Camera',
weight = 3000,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_personal'
},
client = {
image = 'camera_personal.png',
}
},
['camera_personaltablet'] = {
label = 'Personal CamView',
weight = 2000,
stack = false,
close = true,
consume = 0,
server = {
export = 'sf_camerasecurity.cam_camera_personaltablet'
},
client = {
image = 'camera_personaltablet.png',
}
},
['vpn'] = {
label = 'VPN Router',
weight = 1000,
stack = false
},
['screwdriverset'] = {
label = 'Toolkit',
weight = 1000,
stack = false
},
screwdriverset = { name = 'screwdriverset', label = 'Toolkit', weight = 1000, type = 'item', image = 'screwdriverset.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = 'Very useful to screw... screws...' },