Page cover

πŸ“ΈCCTV

  • Adding more CCTV Locations is very simple via the config.lua file

  • To add another CCTV Location that a bar can use you must pass the RestaurantName as the key and then customize the values to suit your needs

  • The COORDS is where the camera will be located

  • The 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