
πΈCCTV
Adding More CCTV
Locations
Adding more
CCTV Locations
is very simple via theconfig.lua
fileTo add another
CCTV Location
that a bar can use you must pass theRestaurantName
as the key and then customize the values to suit your needsThe
COORDS
is where the camera will be locatedThe
HEADING
is which way the camera is facing
Config.CCTV = {
['Example Restaurant'] = {
["Main Dining Area"] = {
coords = vector3(-1406.95, -601.23, 33.42),
heading = 279.09,
},
["Entrance"] = {
coords = vector3(-1382.57, -590.95, 33.0),
heading = 85.59,
},
["Outside"] = {
coords = vector3(-1386.42, -584.15, 33.65),
heading = 127.95,
},
},
}
Last updated