> For the complete documentation index, see [llms.txt](https://m4ster.gitbook.io/uniquedevelopment/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://m4ster.gitbook.io/uniquedevelopment/resources/esx/editor/config.md).

# Config

```
lib.locale()

Config = {}

Config.Framework = "ESX" -- Framework | types: ESX
Config.Progress = "ox_lib_circle" -- ProgressBar | types: ox_lib_square, ox_lib_circle
Config.Logs = { enabled = true } -- use webhook Can be changed in server > sv_log.lua
Config.Job = "pizzajob" -- also change in sv_global.lua and cl_global.lua
Config.Clothing = "illenium-appearance" -- Clothing | types: esx_skin, fivem-appearance, ox_appearance, illenium-appearance (Change in cl_global.lua)
Config.checkForUpdates = true -- Check for updates?

Config.Duty = {
    duty = true,
    Zones = {
        coords = vec3(796.4061, -765.8765, 31.0483),
        size = vec3(1.0, 0.5, 0.5),
        rotation = 180,
        debug = false,
        label = "Duty",
        distance = 1.0,
    }
}

Config.ClothingMenu = {
    coords = vec3(811.5312, -758.9527, 31.2659),
    size = vec3(1.3, 0.8, 0.9),
    rotation = 358.0759,
    debug = false,
    distance = 2,
}

Config.icons = {
    iconBossMenu = "fa-solid fa-laptop",
    iconChairs = "fas fa-chair",
    iconGarage = "fa-solid fa-car-side",
    iconCoffeMachine = "fas fa-coffee",
    iconBeerDispenser = "fa-solid fa-beer-mug-empty",
    iconSodamachine = "fa-solid fa-glass-water",
    iconCups = "fas fa-coffee",
    iconPlate = "fa-solid fa-plate-wheat",
    iconIce = "fa-solid fa-dice-d6",
    iconBeerGlass = "fa-solid fa-beer-mug-empty",
    iconWash = "fa-solid fa-sink",
    iconDoughmixer = "fa-solid fa-blender",
    iconDoughtable = "fas fa-tablet",
    iconAppetizers = "fa-solid fa-bowl-food",
    iconKnife = "fa-solid fa-utensils",
    iconCheese = "fa-solid fa-cheese",
    iconBurner = "fa-solid fa-fire-burner",
    iconOven = "fa-solid fa-pizza-slice",
    iconDessert = "fa-solid fa-cookie",
    iconClothing = "fa-solid fa-shirt",
    iconPhone = "fa-solid fa-phone",
    iconWines = "fa-solid fa-wine-glass",
    iconDuty = "fa-solid fa-clipboard"
}

Config.Delivery = {
    Zones = {
        coords = vector3(811.3762, -750.7660, 26.7057),
        size = vec3(0.7, 0.4, 1.0),
        rotation = 90,
        debug = false,
        distance = 1.0,
    },
    NPCModel = `a_m_y_business_01`,
    ProgressBar = {
        duration = 1000,
        useWhileDead = false,
        canCancel = false,
        dict = "cellphone@",
        clip = "cellphone_call_listen_base",
        flags = 49,
        model = `vw_prop_casino_phone_01b_handle`,
        pos = vec3(0.0, -0.02, -0.03),
        rot = vec3(90.0, 0.0, 190.0),
        bone = 28422
    },
    DeliveryLocations = {
        vector3(6.54, -705.56, 44.97),
        vector3(105.73, -742.6, 44.75),
        vector3(169.69, -567.41, 42.87),
        vector3(236.33, -408.71, 46.92),
        vector3(311.85, -202.71, 53.22),
        vector3(-766.74, -23.18, 40.08),
        vector3(-633.43, -126.15, 38.23),
        vector3(-444.26, -358.28, 33.5),
        vector3(-1075.52, -1027.14, 3.55),
        vector3(-1127.9, -1081.3, 3.22),
        vector3(-1253.36, -1140.85, 7.57),
        vector3(-943.12, -1075.7, 1.75),
        vector3(-1118.03, -1488.38, 3.73),
        vector3(-1015.6, -1514.93, 5.51),
        vector3(-970.15, -1431.46, 6.68),
        vector3(-1528.03, -344.09, 44.39),
        vector3(-1596.4, -352.43, 44.98),
        vector3(-1790.15, -369.27, 44.11),
        vector3(-1970.18, -501.86, 10.88),
        vector3(-1918.21, -542.57, 10.83),
        vector3(-1883.17, -578.75, 10.82),
        vector3(-933.25, 694.81, 151.71),
        vector3(-127.46, 590.37, 203.52),
        vector3(-848.27, 104.41, 52.18),
        vector3(-882.75, 21.04, 44.43),
        vector3(-889.31, 7.63, 43.64),
        vector3(-1097.4, -324.7, 36.82),
        vector3(-660.92, -219.94, 36.73),
        vector3(-262.66, -903.38, 31.31),
        vector3(315.42, -1098.68, 28.4),
        vector3(-129.2, -2183.72, 9.39),
    },
    numItems = math.random(1, 3), -- number of unique items
    count = math.random(1, 3), -- ammount of unique items
    Items = {"tiramisu","cannoli_siciliani","panna_cotta","caprese_cake","tomato_bruschetta","parma_ham_and_melon","beef_carpaccio","caprese_salad","minestrone","ribollita","spaghetti_carbonara","bolognese_lasagna","quattro_stagioni","diavola","napoli_pizza","capricciosa","margherita_pizza","coffee_mug","green_tea","espresso","macchiato","redbeer","blackbeer","beer","ecola","sprunk","eorange","lemonade"}, -- items to sell
    minPayment = 50, -- minimum ammount of money
    maxPayment = 100, --  maximum ammount of money
}

Config.Vehicles = {
    Ped = {
        PedModel = "a_m_m_business_01",
        PedCoords = vector3(814.9131, -734.6125, 26.6007),
        PedHeading = 124.0600
    },
    Target = {
        distance = 1.5
    },
    VehicleSpawn = {
        SpawnCoords = vector3(810.1436, -732.4597, 27.5979),
        SpawnHeading = 133.6975
    },
    VehicleColor = {
        colorId = 5
    },
    VehicleLivery = {
        livery = 0
    },
    Vehicle = {
        {label = "Vehicle", model = "nspeedo", description = "test", icon = "fa-solid fa-car-side", image = "https://i.postimg.cc/mZK6Ydtg/kombi.png"},
    }
}

Config.BossMenu = {
    location = vec3 (797.8888, -751.5585, 31.2016),
    size = vec3 (3.0, 1.0, 0.6),
    rotation = 0.0000,
    debug = false,
}

Config.Blips = {
    uniquee = {
        EnableBlip = true
    },
    unique = { -- do not use same value twice (will result in overwriting of blip)
        BlipCoords = vec3(803.9691, -752.6849, 26.7809), -- Blip coords
        Sprite = 93, -- Blip Icon
        Display = 4, -- keep 4
        Scale = 0.8, -- Size of blip
        Colour = 2, -- colour
        Name = "This Pizza" -- Blip name
    },
    shop = {
        BlipCoords = vec3(-1535.1467, -454.0936, 35.9244),
        Sprite = 59,
        Display = 4,
        Scale = 0.8,
        Colour = 2,
        Name = "This Pizza Shop"
    },
}

Config.Coffeemachine = {
    Header = {
        title = "Coffee Machine"
    },
    Zones = {
        coords = vec3(811.5013, -764.3884, 26.9430),
        size = vec3(0.7, 0.5, 0.7),
        rotation = 269.9944,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        Coffee = {
            Title = "Coffee", 
            description = "Required Item: 1x mug, 2x sugar, 10x ground coffee, 1x water glass",
            icon = 'mug-hot',
            image = 'https://i.postimg.cc/7ZCwqgp9/kafa-u-soljii.png',
            RequiredItems = {
                { item = "mug", count = 1, remove = true},
                { item = "sugar", count = 2, remove = true },
                { item = "finely_ground_coffee", count = 10, remove = true },
                { item = "water_in_plastic_glass", count = 1, remove = true },
            },
            AddItems = {
                { item = "coffee_mug", count = 1 },
            }
        },
        GreenTea = {
            Title = "Green Tea", 
            description = "Required Item: 1x mug, 2x sugar, 1x tea bag, 1x water glass",
            image = 'https://i.postimg.cc/y81bpMj7/green-tea.png',
            icon = 'mug-hot',
            RequiredItems = {
                { item = "mug", count = 1, remove = true},
                { item = "sugar", count = 2, remove = true },
                { item = "green_tea_bag", count = 1, remove = true },
                { item = "water_in_plastic_glass", count = 1, remove = true },
            },
            AddItems = {
                { item = "green_tea", count = 1 },
            }
        },
        Espresso = {
            Title = 'Espresso',
            description = "Requited Item: 1x mug, 2x sugar, 10x ground coffee, 1x water glass",
            image = 'https://i.postimg.cc/hj0V2T7M/Untitled-1.png',
            icon = 'mug-hot',
            RequiredItems = {
                { item = "mug", count = 1, remove = true},
                { item = "sugar", count = 2, remove = true },
                { item = "finely_ground_coffee", count = 10, remove = true },
                { item = "water_in_plastic_glass", count = 1, remove = true },
            },
            AddItems = {
                { item = "espresso", count = 1 },
            }
        },
        Macchiato = {
            Title = 'Macchiato',
            description = "Requited Item: 1x mug, 2x sugar, 10x ground coffee, 1x water glass",
            icon = 'mug-hot',
            image = 'https://i.postimg.cc/fyGWXgTP/Untitled-1.png',
            RequiredItems = {
                { item = "mug", count = 1, remove = true},
                { item = "sugar", count = 2, remove = true },
                { item = "finely_ground_coffee", count = 10, remove = true },
                { item = "water_in_plastic_glass", count = 1, remove = true },
            },
            AddItems = {
                { item = "macchiato", count = 1 },
            }
        },
    },
}

Config.BeerDispenser = {
    Header = {
        title = "Beer Dispenser"
    },
    Zones = {
        coords = vec3(814.0560, -749.3459, 27.1249),
        size = vec3(0.9, 0.4, 0.7),
        rotation = 268.7208,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        RedBeer = {
            Title = "Red beer", 
            description = "Requited Item: 1x beer mug",
            icon = 'fa-solid fa-beer-mug-empty',
            image = 'https://i.postimg.cc/T256rH5j/Crveno-pivo.png',
            RequiredItems = {
                { item = "beer_mug", count = 1, remove = true},
            },
            AddItems = {
                { item = "redbeer", count = 1 },
            }
        },
        BlackBeer = {
            Title = "Black beer", 
            description = "Requited Item: 1x beer mug",
            image = 'https://i.postimg.cc/0Q6L0bj5/Tamno-pivo.png',
            icon = 'fa-solid fa-beer-mug-empty',
            RequiredItems = {
                { item = "beer_mug", count = 1, remove = true},
            },
            AddItems = {
                { item = "blackbeer", count = 1 },
            }
        },
        Beer = {
            Title = 'Beer',
            description = "Requited Item: 1x beer mug",
            image = 'https://i.postimg.cc/Z5tpTgpw/Svetlo-pivo.png',
            icon = 'fa-solid fa-beer-mug-empty',
            RequiredItems = {
                { item = "beer_mug", count = 1, remove = true},
            },
            AddItems = {
                { item = "beer", count = 1 },
            }
        },
    },
}

Config.Sodamachine = {
    Header = {
        title = "Soda Machine"
    },
    Zones = {
        coords = vec3(811.5013, -765.1884, 26.9430),
        size = vec3(0.7, 0.5, 0.7),
        rotation = 269.9944,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        Ecola = {
            Title = "ECola", 
            description = "Required Item: 1x cup, 3x ice",
            icon = 'fa-solid fa-glass-water',
            image = 'https://i.postimg.cc/jd64mtJs/Cola-casa.png',
            RequiredItems = {
                { item = "cup", count = 1, remove = true},
                { item = "ice", count = 3, remove = true },
            },
            AddItems = {
                { item = "ecola", count = 1 },
            }
        },
        Sprunk = {
            Title = "Sprunk", 
            description = "Required Item: 1x cup, 3x ice",
            icon = 'fa-solid fa-glass-water',
            image = 'https://i.postimg.cc/tTFXkZZt/Spprite.png',
            RequiredItems = {
                { item = "cup", count = 1, remove = true},
                { item = "ice", count = 3, remove = true },
            },
            AddItems = {
                { item = "sprunk", count = 1 },
            }
        },
        Eorange = {
            Title = "Eorange", 
            description = "Required Item: 1x cup, 3x ice",
            icon = 'fa-solid fa-glass-water',
            image = 'https://i.postimg.cc/tJjp1qgS/Fantaa.png',
            RequiredItems = {
                { item = "cup", count = 1, remove = true},
                { item = "ice", count = 3, remove = true },
            },
            AddItems = {
                { item = "eorange", count = 1 },
            }
        },
        Lemonade = {
            Title = "Lemonade", 
            description = "Required Item: 1x cup, 1x lemon, 3x ice",
            icon = 'fa-solid fa-glass-water',
            image = 'https://i.postimg.cc/j2sB0L2b/Limunada.png',
            RequiredItems = {
                { item = "cup", count = 1, remove = true},
                { item = "lemon", count = 1, remove = true},
                { item = "ice", count = 3, remove = true },
            },
            AddItems = {
                { item = "lemonade", count = 1 },
            }
        },
    },
}

Config.Ice = {
    Header = {
        title = "Ice"
    },
    Zones = {
        coords = vec3(805.7376, -764.8769, 26.1043),
        size = vec3(1.4, 0.5, 0.7),
        rotation = 90.0165,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 1000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        Ice = {
            Title = "Ice", 
            description = "Ice for soda",
            icon = 'fa-solid fa-dice-d6',
            image = 'https://i.postimg.cc/SQw6jwqB/led.png',
            AddItems = {
                { item = "ice", count = 1 },
            }
        }
    },
}

Config.Cups = {
    Header = {
        title = "cup glass / mugs"
    },
    Zones = {
        coords = vec3(811.4458, -764.6391, 27.8485),
        size = vec3(1.2, 0.5, 0.7),
        rotation = 90.0165,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_movie_bulb@base',
        clip = 'base'
    },
    Crafting = {
        Mug = {
            Title = "Mug", 
            description = "Mug for coffee and tea",
            icon = 'fa-solid fa-mug-saucer',
            image = 'https://i.postimg.cc/FsDGxM40/mug.png',
            AddItems = {
                { item = "mug", count = 1 },
            }
        },
        Cup = {
            Title = "Cup", 
            description = "Cup for soda",
            icon = "fa-solid fa-glass-water",
            image = 'https://i.postimg.cc/CxQMDFyF/Cola-casa.png',
            AddItems = {
                { item = "cup", count = 1 },
            }
        },
        PlasticGlass = {
            Title = "Plastic glass", 
            description = "Plastic glass for water",
            icon = "fa-solid fa-glass-water",
            image = 'https://i.postimg.cc/C13KG7w3/plastic-glass.png',
            AddItems = {
                { item = "plastic_glass", count = 1 },
            }
        },
    },
}

Config.Plate = {
    Header = {
        title = "Plate"
    },
    Zones = {
        coords = vec3(809.2318, -765.2659, 27.8875),
        size = vec3(0.8, 0.3, 0.7),
        rotation = 177.1611,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_movie_bulb@base',
        clip = 'base'
    },
    Crafting = {
        Plate = {
            Title = "Plate", 
            description = "Plate for parma ham and melon / bolognese lasagna / all desserts",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/G3Gcgsbx/plate.png',
            AddItems = {
                { item = "plate", count = 1 },
            }
        },
        Plate2 = {
            Title = "Plate", 
            description = "Plate for beef carpaccio / caprese salad / Tagliatelle with bolognese sauce / Spaghetti carbonara",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/bN1RmPCB/plate2.png',
            AddItems = {
                { item = "plate2", count = 1 },
            }
        },
        Plate3 = {
            Title = "Bowl", 
            description = "Plate for soups",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/8Cx7bhNg/bowl.png',
            AddItems = {
                { item = "bowl", count = 1 },
            }
        },
        Plate4 = {
            Title = "plate", 
            description = "Plate for pizza",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/7YGFT0by/plate3.png',
            AddItems = {
                { item = "plate3", count = 1 },
            }
        },
    },
}

Config.BeerGlass = {
    Header = {
        title = "Beer mug"
    },
    Zones = {
        coords = vec3(813.6273, -751.1548, 27.3903),
        size = vec3(1.2, 0.5, 1.8),
        rotation = 266.0778,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_movie_bulb@base',
        clip = 'base'
    },
    Crafting = {
        BeerMug = {
            Title = "Beer mug", 
            description = "Beer mug for beer",
            icon = 'fa-solid fa-beer-mug-empty',
            image = 'https://i.postimg.cc/x1cyCH4d/Casa-za-pivo.png',
            AddItems = {
                { item = "beer_mug", count = 1 },
            }
        },
        WineGlass = {
            Title = "Wine Glass", 
            description = "Wine glass for wine",
            icon = "fa-solid fa-wine-glass-empty",
            image = 'https://i.postimg.cc/DZChxZvq/wine-glass.png',
            AddItems = {
                { item = "wine_glass", count = 1 },
            }
        },
    },
}

Config.Wash = {
    Header = {
        title = "Wash"
    },
    Water = {
        particleDictionary = "core",
        particleName = "ent_sht_water",
        WaterCoords = {x = 813.7525, y = -758.4099, z = 27.0563}
    },
    Zones = {
        coords = vec3(813.7764, -758.4155, 26.5168),
        size = vec3(0.7, 0.7, 0.7),
        rotation = 270.4741,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 5000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        Glassofwater = {
            Title = "Plastic water", 
            description = "Required Item: 1x dirty mug",
            icon = 'fa-solid fa-mug-saucer',
            image = 'https://i.postimg.cc/ZnNC2gfY/water-glass.png',
            RequiredItems = {
                { item = "plastic_glass", count = 1, remove = true},
            },
            AddItems = {
                { item = "water_in_plastic_glass", count = 1 },
            }
        },
        DirtyMug = {
            Title = "Mug", 
            description = "Required Item: 1x dirty mug",
            icon = 'fa-solid fa-mug-saucer',
            image = 'https://i.postimg.cc/FsDGxM40/mug.png',
            RequiredItems = {
                { item = "dirty_mug", count = 1, remove = true},
            },
            AddItems = {
                { item = "mug", count = 1 },
            }
        },
        DirtyCup = {
            Title = "Cup", 
            description = "Required Item: 1x dirty cup",
            icon = 'fa-solid fa-glass-water',
            image = 'https://i.postimg.cc/CxQMDFyF/Cola-casa.png',
            RequiredItems = {
                { item = "dirty_cup", count = 1, remove = true},
            },
            AddItems = {
                { item = "cup", count = 1 },
            }
        },
        DirtyBeerMug = {
            Title = "Beer Mug", 
            description = "Required Item: 1x dirty beer",
            icon = 'fa-solid fa-beer-mug-empty',
            image = 'https://i.postimg.cc/x1cyCH4d/Casa-za-pivo.png',
            RequiredItems = {
                { item = "dirty_beer_mug", count = 1, remove = true},
            },
            AddItems = {
                { item = "beer_mug", count = 1 },
            }
        },
        Dirtyplate3 = {
            Title = "Dirty Pizza Plate", 
            description = "Required Item: 1x dirty pizza plate",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/7YGFT0by/plate3.png',
            RequiredItems = {
                { item = "dirty_plate3", count = 1, remove = true},
            },
            AddItems = {
                { item = "plate3", count = 1 },
            }
        },
        Dirtyplate4 = {
            Title = "Dirty Plate", 
            description = "Required Item: 1x dirty plate",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/jj5DrRRc/plate.png',
            RequiredItems = {
                { item = "dirty_plate", count = 1, remove = true},
            },
            AddItems = {
                { item = "plate", count = 1 },
            }
        },
        Dirtyplate5 = {
            Title = "Dirty Plate", 
            description = "Required Item: 1x dirty plate",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/NF1MxMxs/plate2.png',
            RequiredItems = {
                { item = "dirty_plate2", count = 1, remove = true},
            },
            AddItems = {
                { item = "plate2", count = 1 },
            }
        },
        Dirtyplate6 = {
            Title = "Dirty Bowl", 
            description = "Required Item: 1x dirty bowl",
            icon = 'fa-solid fa-plate-wheat',
            image = 'https://i.postimg.cc/8Cx7bhNg/bowl.png',
            RequiredItems = {
                { item = "dirty_bowl", count = 1, remove = true},
            },
            AddItems = {
                { item = "bowl", count = 1 },
            }
        },
        Dirtyplate7 = {
            Title = "Dirty wine glass", 
            description = "Required Item: 1x dirty wine glass",
            icon = 'fa-solid fa-wine-glass-empty',
            image = 'https://i.postimg.cc/DZChxZvq/wine-glass.png',
            RequiredItems = {
                { item = "dirty_wine_glass", count = 1, remove = true},
            },
            AddItems = {
                { item = "wine_glass", count = 1 },
            }
        },
    },
}

Config.Doughmixer = {
    Header = {
        title = "Dough Mixer"
    },
    Zones = {
        coords = vec3(806.1279, -757.3797, 26.5314),
        size = vec3(0.7, 0.6, 1.7),
        rotation = 46.5296,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        Dough = {
            Title = "Dough", 
            description = "Required Item: 1x sugar, 1x purpose flour, 1x water glass, 2x Salt, 1x yeast",
            icon = 'fa-solid fa-blender',
            image = 'https://i.postimg.cc/dQzWWL5v/dough.png',
            RequiredItems = {
                { item = "sugar", count = 1, remove = true},
                { item = "purpose_flour", count = 1, remove = true },
                { item = "water_in_plastic_glass", count = 1, remove = true },
                { item = "salt", count = 2, remove = true },
                { item = "yeast", count = 1, remove = true },
            },
            AddItems = {
                { item = "dough", count = 1 },
            }
        },
    },
}

Config.Doughtable = {
    Header = {
        title = "Dough Table"
    },
    Zones = {
        coords = vec3(807.6425, -756.8678, 26.6053),
        size = vec3(1.8, 0.8, 0.7),
        rotation = 360.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        DevelopedDough = {
            Title = "Developed dough", 
            description = "Required Item: 1x dough",
            icon = 'fa-solid fa-pizza-slice',
            image = 'https://i.postimg.cc/XvCqk1qn/dough1.png',
            RequiredItems = {
                { item = "dough", count = 1, remove = true},
            },
            AddItems = {
                { item = "dough1", count = 1 },
            }
        },
        DoughWithSauce = {
            Title = "Dough with sauce", 
            description = "Required Item: 1x developed dough 1x tomato sauce",
            icon = 'fa-solid fa-pizza-slice',
            image = 'https://i.postimg.cc/Ss4S7yHG/dough2.png',
            RequiredItems = {
                { item = "dough1", count = 1, remove = true},
                { item = "tomato_sauce", count = 1, remove = true},
            },
            AddItems = {
                { item = "dough2", count = 1 },
            }
        },
    },
}

Config.Dessert = {
    Header = {
        title = "Dessert"
    },
    Zones = {
        coords = vec3(808.3741, -762.1298, 26.6649),
        size = vec3(1.0, 0.7, 0.5),
        rotation = 270.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        Tiramisu = {
            Title = "Tiramisu", 
            description = "Required Item: 1x plate, 1x sugar, 1x cocoa powder, 1x egg, 1x ladyfingers, 1x mascarpone cheese, 1x espresso",
            icon = 'fa-solid fa-cookie',
            image = 'https://i.postimg.cc/x1BkvWv1/tiramisu.png',
            RequiredItems = {
                { item = "plate", count = 1, remove = true},
                { item = "sugar", count = 1, remove = true},
                { item = "cocoa_powder", count = 1, remove = true },
                { item = "egg", count = 1, remove = true },
                { item = "ladyfingers", count = 1, remove = true },
                { item = "mascarpone_cheese", count = 1, remove = true },
                { item = "espresso", count = 1, remove = true },
            },
            AddItems = {
                { item = "tiramisu", count = 1 },
            }
        },
        CannoliSiciliani = {
            Title = "Cannoli Siciliani", 
            description = "Required Item: 1x plate, 1x sugar, 1x candied cherry, 1x cannoli shells, 1x ricotta cheese, 1x vanilla",
            icon = 'fa-solid fa-cookie',
            image = 'https://i.postimg.cc/mkr2fwYn/cannoli-siciliani.png',
            RequiredItems = {
                { item = "plate", count = 1, remove = true},
                { item = "sugar", count = 1, remove = true},
                { item = "candied_cherry", count = 1, remove = true },
                { item = "cannoli_shells", count = 1, remove = true },
                { item = "ricotta_cheese", count = 1, remove = true },
                { item = "vanilla", count = 1, remove = true },
            },
            AddItems = {
                { item = "cannoli_siciliani", count = 1 },
            }
        },
        PannaCotta = {
            Title = "Panna Cotta", 
            description = "Required Item: 1x plate, 1x sugar, 1x fruit sauce, 1x gelatin, 4x strawberry, 1x vanilla, 1x whipping cream",
            icon = 'fa-solid fa-cookie',
            image = 'https://i.postimg.cc/s29VM8K8/panna-cotta.png',
            RequiredItems = {
                { item = "plate", count = 1, remove = true},
                { item = "sugar", count = 1, remove = true},
                { item = "fruit_sauce", count = 1, remove = true },
                { item = "gelatin", count = 1, remove = true },
                { item = "strawberry", count = 4, remove = true },
                { item = "vanilla", count = 1, remove = true },
                { item = "whipping_cream", count = 1, remove = true },
            },
            AddItems = {
                { item = "panna_cotta", count = 1 },
            }
        },
        CapreseCake = {
            Title = "Caprese Cake", 
            description = "Required Item: 1x plate, 1x sugar, 1x butter, 1x dark chocolate, 2x egg, 1x vanilla, 1x ground almonds",
            icon = 'fa-solid fa-cookie',
            image = 'https://i.postimg.cc/xCXn6C9r/caprese-cake.png',
            RequiredItems = {
                { item = "plate", count = 1, remove = true},
                { item = "sugar", count = 1, remove = true},
                { item = "butter", count = 1, remove = true },
                { item = "dark_chocolate", count = 1, remove = true },
                { item = "egg", count = 2, remove = true },
                { item = "vanilla", count = 1, remove = true },
                { item = "ground_almonds", count = 1, remove = true },
            },
            AddItems = {
                { item = "caprese_cake", count = 1 },
            }
        },
    },
}

Config.Appetizers = {
    Header = {
        title = "Appetizers"
    },
    Zones = {
        coords = vec3(809.2905, -762.2939, 26.7142),
        size = vec3(0.7, 0.5, 0.7),
        rotation = 269.4428,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        TomatoBruschetta = {
            Title = "Tomato Bruschetta", 
            description = "Required Item: 1x fresh basil, 2x fresh tomato, 1x garlic, 1x olive oil, 1x pepper, 1x salt, 1x toasted bread",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/jd4FLRhb/tomato-bruschetta.png',
            RequiredItems = {
                { item = "fresh_basil", count = 1, remove = true},
                { item = "fresh_tomato", count = 2, remove = true},
                { item = "garlic", count = 1, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "toasted_bread", count = 1, remove = true},
            },
            AddItems = {
                { item = "tomato_bruschetta", count = 1 },
            }
        },
        ParmaHamAndMelon = {
            Title = "Parma Ham And Melon", 
            description = "Required Item: 1x plate, 3x fresh melon slice, 5x parma ham slice, 1x pepper",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/tTRTGqD4/parma-ham-and-melon.png',
            RequiredItems = {
                { item = "plate", count = 3, remove = true},
                { item = "fresh_melon_slice", count = 3, remove = true},
                { item = "parma_ham_slice", count = 5, remove = true},
                { item = "pepper", count = 1, remove = true},
            },
            AddItems = {
                { item = "parma_ham_and_melon", count = 1 },
            }
        },
        BeefCarpaccio = {
            Title = "Beef Carpaccio", 
            description = "Required Item: 1x plate, 1x arugula, 1x capers, 1x lemon, 1x olive_oil, 5x parmesan, 1x pepper, 1x salt, 5x parma ham slice",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/v8f9szr1/beef-carpaccio.png',
            RequiredItems = {
                { item = "plate2", count = 1, remove = true},
                { item = "arugula", count = 1, remove = true},
                { item = "capers", count = 1, remove = true},
                { item = "lemon", count = 1, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "parmesan", count = 5, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "parma_ham_slice", count = 5, remove = true},
            },
            AddItems = {
                { item = "beef_carpaccio", count = 1 },
            }
        },
        CapreseSalad = {
            Title = "Caprese Salad", 
            description = "Required Item: 1x plate, 1x balsamic vinegar, 1x fresh basil, 3x fresh tomato, 1x olive oil, 5x buffalo mozzarella, 1x pepper, 1x salt",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/1X5gTgZB/caprese-salad.png',
            RequiredItems = {
                { item = "plate2", count = 1, remove = true},
                { item = "balsamic_vinegar", count = 1, remove = true},
                { item = "buffalo_mozzarella", count = 5, remove = true},
                { item = "fresh_basil", count = 1, remove = true},
                { item = "fresh_tomato", count = 3, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
            },
            AddItems = {
                { item = "caprese_salad", count = 1 },
            }
        },
    },
}

Config.Burner = {
    Header = {
        title = "Burner"
    },
    Zones = {
        coords = vec3(808.3232, -760.1723, 26.4755),
        size = vec3(0.8, 0.6, 0.9),
        rotation = 270.4572,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        Minestrone = {
            Title = "Minestrone", 
            description = "Required Item: 1x bowl 2x carrot, 1x ditalini, 3x fresh tomato, 1x garlic, 2x green beans, 1x olive oil, 1x onion, 5x parmesan, 1x parsley, 1x pepper, 1x potato, 1x salt, 2x spinach, 1x white beans, 1x zucchini",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/TYbCj9xf/minestrone.png',
            RequiredItems = {
                { item = "bowl", count = 1, remove = true},
                { item = "carrot", count = 2, remove = true},
                { item = "ditalini", count = 1, remove = true},
                { item = "fresh_tomato", count = 3, remove = true},
                { item = "garlic", count = 1, remove = true},
                { item = "green_beans", count = 2, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "onion", count = 1, remove = true},
                { item = "parmesan", count = 5, remove = true},
                { item = "parsley", count = 1, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "potato", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "spinach", count = 2, remove = true},
                { item = "white_beans", count = 1, remove = true},
                { item = "zucchini", count = 1, remove = true},
            },
            AddItems = {
                { item = "minestrone", count = 1 },
            }
        },
        Ribollita = {
            Title = "Ribollita", 
            description = "Required Item: 1x bowl 1x bread 2x carrot, 1x celery, 3x fresh tomato, 1x garlic, 2x kale, 1x olive oil, 1x onion, 1x pepper, 1x salt, 1x white beans",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/2ybTKdBd/ribollita.png',
            RequiredItems = {
                { item = "bowl", count = 1, remove = true},
                { item = "bread", count = 1, remove = true},
                { item = "carrot", count = 2, remove = true},
                { item = "celery", count = 1, remove = true},
                { item = "fresh_tomato", count = 3, remove = true},
                { item = "garlic", count = 1, remove = true},
                { item = "kale", count = 2, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "onion", count = 1, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "white_beans", count = 1, remove = true},
            },
            AddItems = {
                { item = "ribollita", count = 1 },
            }
        },
        TagliatelleWithBologneseSauce = {
            Title = "Tagliatelle With Bolognese Sauce", 
            description = "Required Item: 1x plate, 2x carrot, 1x ground meat, 1x milk, 1x olive oil, 2x onion, 5x parmesan, 1x pepper, 1x red wine, 1x salt, 1x tagliatelle, 1x tomato sauce",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/7bvvsZb6/tagliatelle-with-bolognese-sauce.png',
            RequiredItems = {
                { item = "plate2", count = 1, remove = true},
                { item = "carrot", count = 2, remove = true},
                { item = "ground_meat", count = 1, remove = true},
                { item = "milk", count = 1, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "onion", count = 2, remove = true},
                { item = "parmesan", count = 5, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "red_wine", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "tagliatelle", count = 1, remove = true},
                { item = "tomato_sauce", count = 1, remove = true},
            },
            AddItems = {
                { item = "tagliatelle_with_bolognese_sauce", count = 1 },
            }
        },
        SpaghettiCarbonara = {
            Title = "Spaghetti Carbonara", 
            description = "Required Item: 1x plate, 3x egg, 1x pecorino romano cheese, 1x guanciale, 1x pepper, 1x salt, 1x spaghetti",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/PJ14zXDT/spaghetti-carbonara.png',
            RequiredItems = {
                { item = "plate2", count = 1, remove = true},
                { item = "egg", count = 3, remove = true},
                { item = "pecorino_romano_cheese", count = 1, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "spaghetti", count = 1, remove = true},
                { item = "guanciale", count = 1, remove = true},
            },
            AddItems = {
                { item = "spaghetti_carbonara", count = 1 },
            }
        },
        BologneseLasagna = {
            Title = "Bolognese Lasagna", 
            description = "Required Item: 1x plate, 1x bechamel sauce, 2x lasagna sheets, 5x parmesan, 1x salt, 1x pepper, 1x ragu",
            icon = 'fa-solid fa-bowl-food',
            image = 'https://i.postimg.cc/xC6YjQ8j/bolognese-lasagna.png',
            RequiredItems = {
                { item = "plate", count = 1, remove = true},
                { item = "bechamel_sauce", count = 1, remove = true},
                { item = "lasagna_sheets", count = 2, remove = true},
                { item = "parmesan", count = 5, remove = true},
                { item = "pepper", count = 1, remove = true},
                { item = "ragu", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
            },
            AddItems = {
                { item = "bolognese_lasagna", count = 1 },
            }
        },
    },
}

Config.Oven = {
    Header = {
        title = "Pizza oven"
    },
    Zones = {
        coords = vec3(805.4102, -763.2839, 27.0802),
        size = vec3(1.4, 1.1, 0.7),
        rotation = 90.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        QuattroStagioni = {
            Title = "Quattro Stagioni", 
            description = "Required Item: 1x plate, 1x artichokes, 5x buffalo mozzarella, 3x ham, 1x mushrooms, 1x olive_oil, 1x olives, 1x salt, 1x dough with sauce",
            icon = 'fa-solid fa-pizza-slice',
            image = 'https://i.postimg.cc/zXJtShxQ/quattro-stagioni.png',
            RequiredItems = {
                { item = "plate3", count = 1, remove = true},
                { item = "artichokes", count = 1, remove = true},
                { item = "buffalo_mozzarella", count = 5, remove = true},
                { item = "ham", count = 5, remove = true},
                { item = "mushrooms", count = 1, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "olives", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "dough2", count = 1, remove = true},
            },
            AddItems = {
                { item = "quattro_stagioni", count = 1 },
            }
        },
        Diavola = {
            Title = "Diavola", 
            description = "Required Item: 1x plate, 5x buffalo mozzarella, 2x chili pepper, 1x olive oil, 1x salt, 2x spicy salami, 1x dough with sauce",
            icon = 'fa-solid fa-pizza-slice',
            image = 'https://i.postimg.cc/g20G5n2S/Diavola.png',
            RequiredItems = {
                { item = "plate3", count = 1, remove = true},
                { item = "buffalo_mozzarella", count = 5, remove = true},
                { item = "chili_pepper", count = 2, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "spicy_salami", count = 2, remove = true},
                { item = "dough2", count = 1, remove = true},
            },
            AddItems = {
                { item = "diavola", count = 1 },
            }
        },
        NapoliPizza = {
            Title = "Napoli", 
            description = "Required Item: 1x plate, 1x anchovies, 5x buffalo mozzarella, 1x egg, 1x capers, 1x olive oil, 1x olives, 1x oregano, 1x salt, 1x dough with sauce",
            icon = 'fa-solid fa-pizza-slice',
            image = 'https://i.postimg.cc/pXCFzhSq/napoli-pizza.png',
            RequiredItems = {
                { item = "plate3", count = 1, remove = true},
                { item = "buffalo_mozzarella", count = 5, remove = true},
                { item = "anchovies", count = 1, remove = true},
                { item = "egg", count = 1, remove = true},
                { item = "capers", count = 1, remove = true},
                { item = "olive_oil", count = 2, remove = true},
                { item = "olives", count = 1, remove = true},
                { item = "oregano", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "dough2", count = 1, remove = true},
            },
            AddItems = {
                { item = "napoli_pizza", count = 1 },
            }
        },
        Capricciosa = {
            Title = "Capricciosa", 
            description = "Required Item: 1x plate, 1x artichokes, 5x buffalo_mozzarella, 3x ham, 1x mushrooms, 1x olive oil, 1x olives, 1x salt, 1x dough with sauce",
            icon = 'fa-solid fa-pizza-slice',
            image = 'https://i.postimg.cc/dQXXv36N/capricciosa.png',
            RequiredItems = {
                { item = "plate3", count = 1, remove = true},
                { item = "buffalo_mozzarella", count = 5, remove = true},
                { item = "artichokes", count = 1, remove = true},
                { item = "ham", count = 3, remove = true},
                { item = "mushrooms", count = 1, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "olives", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "dough2", count = 1, remove = true},
            },
            AddItems = {
                { item = "capricciosa", count = 1 },
            }
        },
        MargheritaPizza = {
            Title = "Margherita", 
            description = "Required Item: 1x plate, 5x buffalo mozzarella, 2x fresh basil, 1x olive oil, 1x salt, 1x dough with sauce",
            icon = 'fa-solid fa-pizza-slice',
            image = 'https://i.postimg.cc/x19Bp7t9/margherita-pizza.png',
            RequiredItems = {
                { item = "plate3", count = 1, remove = true},
                { item = "buffalo_mozzarella", count = 5, remove = true},
                { item = "fresh_basil", count = 2, remove = true},
                { item = "olive_oil", count = 1, remove = true},
                { item = "salt", count = 1, remove = true},
                { item = "dough2", count = 1, remove = true},
            },
            AddItems = {
                { item = "margherita_pizza", count = 1 },
            }
        },
    },
}

Config.Knife = {
    Header = {
        title = "Knife"
    },
    Zones = {
        coords = vec3(810.4562, -765.1699, 26.6299),
        size = vec3(0.5, 0.4, 0.4),
        rotation = 180.2235,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "mp_common",
        clip = "givetake1_a",
    },
    Crafting = {
        FreshMelonSlice = {
            Title = "Fresh Melon Slice", 
            description = "Required Item: 1x fresh melon 1x knife",
            icon = 'fa-solid fa-earth-oceania',
            image = 'https://i.postimg.cc/CLRRKK0Z/fresh-melon-slice.png',
            RequiredItems = {
                { item = "fresh_melon", count = 1, remove = true},
                { item = "WEAPON_KNIFE", count = 1, remove = false},
            },
            AddItems = {
                { item = "fresh_melon_slice", count = 3 },
            }
        },
        ParmaHamSlice = {
            Title = "Parma Ham Slice", 
            description = "Required Item: 1x parma ham 1x knife",
            icon = 'fa-solid fa-earth-oceania',
            image = 'https://i.postimg.cc/m2Kt1GZm/parma-ham-slice.png',
            RequiredItems = {
                { item = "parma_ham", count = 1, remove = true},
                { item = "WEAPON_KNIFE", count = 1, remove = false},
            },
            AddItems = {
                { item = "parma_ham_slice", count = 5 },
            }
        },
    },
}

Config.Cheese = {
    Header = {
        title = "Cheese"
    },
    Zones = {
        coords = vec3(815.4108, -760.2756, 22.0804),
        size = vec3(2.1, 0.7, 0.4),
        rotation = 90.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = "anim@heists@prison_heiststation@cop_reactions",
        clip = "cop_b_idle",
    },
    Crafting = {
        Parmesan = {
            Title = "Parmesan", 
            description = "Required Item: 1x knife",
            icon = 'fa-solid fa-cheese',
            image = 'https://i.postimg.cc/vThZmc8K/parmesan.png',
            RequiredItems = {
                { item = "WEAPON_KNIFE", count = 1, remove = false},
            },
            AddItems = {
                { item = "parmesan", count = 5 },
            }
        },
        BuffaloMozzarella = {
            Title = "Buffalo Mozzarella", 
            description = "Required Item: 1x knife",
            icon = 'fa-solid fa-cheese',
            image = 'https://i.postimg.cc/yd0WWm7v/buffalo-mozzarella.png',
            RequiredItems = {
                { item = "WEAPON_KNIFE", count = 1, remove = false},
            },
            AddItems = {
                { item = "buffalo_mozzarella", count = 5 },
            }
        },
        PecorinoRomanoCheese = {
            Title = "Pecorino Romano Cheese", 
            description = "Required Item: 1x knife",
            icon = 'fa-solid fa-cheese',
            image = 'https://i.postimg.cc/HL39Bvj8/pecorino-romano-cheese.png',
            RequiredItems = {
                { item = "WEAPON_KNIFE", count = 1, remove = false},
            },
            AddItems = {
                { item = "pecorino_romano_cheese", count = 1 },
            }
        },
    },
}

Config.RedWineGlass = {
    Header = {
        title = "Red wine"
    },
    Zones = {
        coords = vec3(807.3046, -755.6133, 22.4879),
        size = vec3(1.7, 0.6, 1.8),
        rotation = 00.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        RedWineGlass = {
            Title = "Red wine glass", 
            description = "Required Item: 1x wine glass",
            icon = 'fa-solid fa-wine-glass',
            image = 'https://i.postimg.cc/25MMyZS9/red-wine-glass.png',
            RequiredItems = {
                { item = "wine_glass", count = 1, remove = true},
            },
            AddItems = {
                { item = "red_wine_glass", count = 1 },
            }
        },
    },
}

Config.WhiteWineGlass = {
    Header = {
        title = "White wine"
    },
    Zones = {
        coords = vec3(811.7656, -755.6133, 22.4879),
        size = vec3(1.7, 0.6, 1.8),
        rotation = 00.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        WhiteWineGlass = {
            Title = "White wine glass", 
            description = "Required Item: 1x wine glass",
            icon = 'fa-solid fa-wine-glass',
            image = 'https://i.postimg.cc/h4mWzg6Z/white-wine-glass.png',
            RequiredItems = {
                { item = "wine_glass", count = 1, remove = true},
            },
            AddItems = {
                { item = "white_wine_glass", count = 1 },
            }
        },
    },
}

Config.WhiteWine = {
    Header = {
        title = "White wine"
    },
    Zones = {
        coords = vec3(809.2832, -761.8520, 22.2026),
        size = vec3(1.7, 0.6, 1.8),
        rotation = 00.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        WhiteWine = {
            Title = "White wine", 
            description = "White wine",
            icon = 'fa-solid fa-wine-glass',
            image = 'https://i.postimg.cc/RhS7BvHC/white-wine-bottle.png',
            RequiredItems = {
            },
            AddItems = {
                { item = "white_wine_bottle", count = 1 },
            }
        },
    },
}

Config.RedWine = {
    Header = {
        title = "Red wine"
    },
    Zones = {
        coords = vec3(807.2579, -761.8520, 22.2026),
        size = vec3(1.7, 0.6, 1.8),
        rotation = 00.0000,
        debug = false,
        distance = 3,
    },
    Animation = {
        duration = 10000,
        useWhileDead = false,
        canCancel = false,
        dict = 'amb@prop_human_bum_bin@idle_a',
        clip = 'idle_a'
    },
    Crafting = {
        RedWine = {
            Title = "Red wine", 
            description = "Red wine",
            icon = 'fa-solid fa-wine-glass',
            image = 'https://i.postimg.cc/Pr8x5BQd/red-wine.png',
            RequiredItems = {
            },
            AddItems = {
                { item = "red_wine", count = 1 },
            }
        },
    },
}

Config.Shop = {
    Name = "Unique This Pizza",
    icon = "fa-solid fa-shop",
    coords = vec3(-1535.4011, -454.4127, 36.0596),
    size = vec3(1.4, 0.9, 0.7),
    rotation = 138.1563,
    debug = false,
    distance = 1.0,
    Items = {
        { label = 'Sugar', item = 'sugar', icon = 'fa-solid fa-barcode',  description = "Buy sugar for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/HWVPbfHF/sugar.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Green Tea box', item = 'green_tea_box', icon = 'fa-solid fa-barcode',  description = "Buy green tea box for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/qvLnvY2D/green-tea-box.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Coffe Pack', item = 'coffee_100', icon = 'fa-solid fa-barcode',  description = "Buy green tea box for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/9Q0GJBXF/coffee-100.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Lemon', item = 'lemon', icon = 'fa-solid fa-barcode',  description = "Buy lemon for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/j20Q7f2M/lemon.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Fresh melon', item = 'fresh_melon', icon = 'fa-solid fa-barcode',  description = "Buy fresh melon for: $", price = 5, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/66fG0gmW/fresh-melon.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Parma ham', item = 'parma_ham', icon = 'fa-solid fa-barcode',  description = "Buy parma ham for: $", price = 5, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/1zF8NjFZ/parma-ham.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Pepper', item = 'pepper', icon = 'fa-solid fa-barcode',  description = "Buy papper for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/3RJHHyYb/pepper.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Balsamic vinegar', item = 'balsamic_vinegar', icon = 'fa-solid fa-barcode',  description = "Buy balsamic vinegar for: $", price = 5, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/Vk2b4QHD/balsamic-vinegar.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Fresh basil', item = 'fresh_basil', icon = 'fa-solid fa-barcode',  description = "Buy fresh basi for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/yYFBcCQj/fresh-basil.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Fresh tomato', item = 'fresh_tomato', icon = 'fa-solid fa-barcode',  description = "Buy fresh tomato for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/sgmrH9RZ/fresh-tomato.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Olive oil', item = 'olive_oil', icon = 'fa-solid fa-barcode',  description = "Buy olive oil for: $", price = 1, MinAmount = 5, MaxAmount = 15, image = "https://i.postimg.cc/DfGK3KTh/olive-oil.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Salt', item = 'salt', icon = 'fa-solid fa-barcode',  description = "Buy salt for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/28FR3FyX/salt.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Garlic', item = 'garlic', icon = 'fa-solid fa-barcode',  description = "Buy garlic for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/pXv3NhCQ/garlic.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Mascarpone cheese', item = 'mascarpone_cheese', icon = 'fa-solid fa-barcode',  description = "Buy mascarpone cheese for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/BvWnwpTt/mascarpone-cheese.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Yeast', item = 'yeast', icon = 'fa-solid fa-barcode',  description = "Buy yeast for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/nczrsCVV/yeast.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Purpose flour', item = 'purpose_flour', icon = 'fa-solid fa-barcode',  description = "Buy purpose flour for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/R0fNMySc/purpose-flour.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Toasted bread', item = 'toasted_bread', icon = 'fa-solid fa-barcode',  description = "Buy toasted breadc for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/9QFSM6vr/toasted-bread.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Arugula', item = 'arugula', icon = 'fa-solid fa-barcode',  description = "Buy arugula for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/fT526HJZ/arugula.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Capers', item = 'capers', icon = 'fa-solid fa-barcode',  description = "Buy capers for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/MHq5LRwv/capers.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Bechamel sauce', item = 'bechamel_sauce', icon = 'fa-solid fa-barcode',  description = "Buy bechamel sauce for: $", price = 5, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/vBdt19c3/bechamel-sauce.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Lasagna sheets', item = 'lasagna_sheets', icon = 'fa-solid fa-barcode',  description = "Buy lasagna sheets for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/Cx3jtDHS/lasagna-sheets.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Ragu', item = 'ragu', icon = 'fa-solid fa-barcode',  description = "Buy ragu for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/FK0jQRDc/ragu.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Carrot', item = 'carrot', icon = 'fa-solid fa-barcode',  description = "Buy carrot for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/j5XPL1VS/carrot.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Ground meat', item = 'ground_meat', icon = 'fa-solid fa-barcode',  description = "Buy ground meat for: $", price = 5, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/j5ZnsJNW/ground-meat.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Milk', item = 'milk', icon = 'fa-solid fa-barcode',  description = "Buy milk for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/wM1Mg4gP/milk.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Onion', item = 'onion', icon = 'fa-solid fa-barcode',  description = "Buy onion for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/G3f9qRj1/onion.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Tagliatelle', item = 'tagliatelle', icon = 'fa-solid fa-barcode',  description = "Buy tagliatelle for: $", price = 8, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/52B04CWx/tagliatelle.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Tomato sauce', item = 'tomato_sauce', icon = 'fa-solid fa-barcode',  description = "Buy tomato sauce for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/XvxYF6vm/tomato-sauce.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Bread', item = 'bread', icon = 'fa-solid fa-barcode',  description = "Buy bread for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/Lhd9RHyY/bread.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Celery', item = 'celery', icon = 'fa-solid fa-barcode',  description = "Buy celery for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/L6ffPhFW/celery.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Kale', item = 'kale', icon = 'fa-solid fa-barcode',  description = "Buy kale for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/FFS1WqCd/kale.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'White beans', item = 'white_beans', icon = 'fa-solid fa-barcode',  description = "Buy white beans for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/5NMyZ3DP/white-beans.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Ditalini', item = 'ditalini', icon = 'fa-solid fa-barcode',  description = "Buy ditalini for: $", price = 5, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/Yqf0kFHt/ditalini.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Green beans', item = 'green_beans', icon = 'fa-solid fa-barcode',  description = "Buy green beans for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/hvR4RDZJ/green-beans.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Parsley', item = 'parsley', icon = 'fa-solid fa-barcode',  description = "Buy parsley for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/TPZfn26k/parsley.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Potato', item = 'potato', icon = 'fa-solid fa-barcode',  description = "Buy potato for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/fLmZC4WM/potato.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Spinach', item = 'spinach', icon = 'fa-solid fa-barcode',  description = "Buy spinach for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/prBvNDn7/spinach.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Zucchini', item = 'zucchini', icon = 'fa-solid fa-barcode',  description = "Buy zucchini for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/Z5CGjkjX/zucchini.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Egg', item = 'egg', icon = 'fa-solid fa-barcode',  description = "Buy egg for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/jjfG0zpX/egg.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Guanciale', item = 'guanciale', icon = 'fa-solid fa-barcode',  description = "Buy guanciale for: $", price = 5, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/htzYTLtB/guanciale.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Spaghetti', item = 'spaghetti', icon = 'fa-solid fa-barcode',  description = "Buy spaghetti for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/9MpgC1JG/spaghetti.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Anchovies', item = 'anchovies', icon = 'fa-solid fa-barcode',  description = "Buy anchovies for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/zX32YCWg/anchovies.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Olives', item = 'olives', icon = 'fa-solid fa-barcode',  description = "Buy olives for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/1z1vFbdG/olives.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Oregano', item = 'oregano', icon = 'fa-solid fa-barcode',  description = "Buy oregano for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/T110Gxy6/oregano.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Artichokes', item = 'artichokes', icon = 'fa-solid fa-barcode',  description = "Buy artichokes for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/bYVLgZMN/artichokes.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Ham', item = 'ham', icon = 'fa-solid fa-barcode',  description = "Buy ham for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/sg7c3w2v/ham.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Mushrooms', item = 'mushrooms', icon = 'fa-solid fa-barcode',  description = "Buy mushrooms for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/FKvxz3fG/mushrooms.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Chili pepper', item = 'chili_pepper', icon = 'fa-solid fa-barcode',  description = "Buy chili pepper for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/ZnW82LgY/chili-pepper.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Spicy salami', item = 'spicy_salami', icon = 'fa-solid fa-barcode',  description = "Buy spicy salami for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/D0RrTXkr/spicy-salami.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Butter', item = 'butter', icon = 'fa-solid fa-barcode',  description = "Buy butter for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/t43hKJr6/butter.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Dark chocolate', item = 'dark_chocolate', icon = 'fa-solid fa-barcode',  description = "Buy dark chocolate for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/500LQ3f5/dark-chocolate.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Vanilla', item = 'vanilla', icon = 'fa-solid fa-barcode',  description = "Buy vanilla for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/Kj3TJ8kR/vanilla.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Ground almonds', item = 'ground_almonds', icon = 'fa-solid fa-barcode',  description = "Buy ground almonds for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/8kxXDFbX/ground-almonds.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Candied cherry', item = 'candied_cherry', icon = 'fa-solid fa-barcode',  description = "Buy candied cherry for: $", price = 1, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/13QWnL2p/candied-cherry.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Cannoli shells', item = 'cannoli_shells', icon = 'fa-solid fa-barcode',  description = "Buy cannoli shells for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/8z4bFshS/cannoli-shells.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Ricotta cheese', item = 'ricotta_cheese', icon = 'fa-solid fa-barcode',  description = "Buy ricotta cheese for: $", price = 5, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/8CsLj4pR/ricotta-cheese.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Cocoa powder', item = 'cocoa_powder', icon = 'fa-solid fa-barcode',  description = "Buy cocoa powder for: $", price = 5, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/BZ2HLX0V/cocoa-powder.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Ladyfingers', item = 'ladyfingers', icon = 'fa-solid fa-barcode',  description = "Buy ladyfingers for: $", price = 5, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/sgghNmZk/ladyfingers.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Fruit sauce', item = 'fruit_sauce', icon = 'fa-solid fa-barcode',  description = "Buy fruit sauce for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/qRsqR63c/fruit-sauce.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Gelatin', item = 'gelatin', icon = 'fa-solid fa-barcode',  description = "Buy gelatin for: $", price = 3, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/PrxfGR2Q/gelatin.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Strawberry', item = 'strawberry', icon = 'fa-solid fa-barcode',  description = "Buy strawberry for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/GmTcts0B/strawberry.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
        { label = 'Whipping cream', item = 'whipping_cream', icon = 'fa-solid fa-barcode',  description = "Buy whipping cream for: $", price = 2, MinAmount = 1, MaxAmount = 15, image = "https://i.postimg.cc/Bvx4c9n4/whipping-cream.png", duration = 1000, dict = "mp_common", clip = "givetake1_a"},
    }
}

Config.chairs = {
    Chair1 = {
        location = vector3(800.0769, -751.5295, 26.2439),
        exit = vector3(799.9507, -750.7653, 26.7808),
        heading = 87.7942,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.9
    },
    Chair2 = {
        location = vector3(798.1346, -751.5511, 26.2439),
        exit = vector3(798.1064, -750.6680, 26.7808),
        heading = 270.1956,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair3 = {
        location = vector3(802.1238, -751.5624, 26.2439),
        exit = vector3(802.0906, -752.1990, 26.7808),
        heading = 270.1956,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair4 = {
        location = vector3(803.9598, -751.5495, 26.2439),
        exit = vector3(804.2330, -752.4330, 26.7771),
        heading =  84.3569,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair5 = {
        location = vector3(798.9988, -748.8562, 26.2439),
        exit = vector3(799.0628, -749.4977, 26.7808),
        heading = 95.2521,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair6 = {
        location = vector3(797.0660, -748.7916, 26.2439),
        exit = vector3(797.0311, -749.3992, 26.7774),
        heading = 260.1554,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair7 = {
        location = vector3(799.4888, -755.9812, 26.2439),
        exit = vector3(798.7923, -756.0370, 26.7808),
        heading = 2.1310,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair8 = {
        location = vector3( 806.1550, -751.4800, 26.2439),
        exit = vector3(806.1763, -750.6347, 26.7808),
        heading =  265.3970,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    }, 
    Chair9= {
        location = vector3(808.0546, -751.5517, 26.2439),
        exit = vector3(808.2784, -750.5752, 26.7808),
        heading = 84.3283,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair10= {
        location = vector3(799.5292, -754.1537, 26.2439),
        exit = vector3(798.7040, -754.0665, 26.7808),
        heading = 158.9780,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair11 = {
        location = vector3( 795.1132, -750.5561, 26.2439),
        exit = vector3(796.1734, -750.7528, 26.7808),
        heading =  178.7048,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    }, 
    Chair12= {
        location = vector3(795.2236, -752.4594, 26.2439),
        exit = vector3(795.9959, -752.6246, 26.7808),
        heading = 355.1175,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
}

Config.chairs2 = {
    Chair1 = {
        location = vector3(808.3419, -755.5038, 26.2439),
        exit = vector3(808.4238, -753.4334, 26.7808),
        heading = 90.3141,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair2 = {
        location = vector3(808.3419, -754.5892, 26.2439),
        exit = vector3(808.4238, -753.4334, 26.7808),
        heading = 90.3141,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair3 = {
        location = vector3(807.0040, -755.5038, 26.2439),
        exit = vector3(807.0684, -753.5050, 26.7808),
        heading = 266.5509,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair4 = {
        location = vector3(807.0422, -754.5862, 26.2439),
        exit = vector3(807.0684, -753.5050, 26.7808),
        heading = 266.5509,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair5 = {
        location = vector3(806.2651, -755.4379, 26.2439),
        exit = vector3(806.2237, -753.5579, 26.7808),
        heading = 83.7447,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair6 = {
        location = vector3(806.2956, -754.5848, 26.2439),
        exit = vector3(806.2237, -753.5579, 26.7808),
        heading = 83.7447,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair7 = {
        location = vector3(804.8648, -755.3729, 26.2439),
        exit = vector3(804.8743, -753.5203, 26.7808),
        heading = 264.1457,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair8 = {
        location = vector3(804.8638, -754.5107, 26.2439),
        exit = vector3(804.8743, -753.5203, 26.7808),
        heading = 267.2166,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair9 = {
        location = vector3(799.7827, -760.4321, 26.2439),
        exit = vector3(797.9029, -760.3190, 26.7809),
        heading = 0.6639,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair10 = {
        location = vector3(799.0734, -760.4136, 26.2439),
        exit = vector3(797.9029, -760.3190, 26.7809),
        heading = 0.6639,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair11 = {
        location = vector3(799.7889, -759.1276, 26.2439),
        exit = vector3(798.0024, -758.9868, 26.780),
        heading = 177.9323,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair12 = {
        location = vector3(799.0884, -759.1128, 26.2439),
        exit = vector3(798.0024, -758.9868, 26.780),
        heading = 177.9323,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair13 = {
        location = vector3(799.6027, -758.3155, 26.2439),
        exit = vector3(798.0928, -758.3535, 26.7808),
        heading = 0.6639,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair14 = {
        location = vector3(798.8894, -758.3002, 26.2439),
        exit = vector3(798.0928, -758.3535, 26.7808),
        heading = 0.6639,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair15 = {
        location = vector3(799.5495, -756.9988, 26.2439),
        exit = vector3(798.1124, -756.7364, 26.7808),
        heading = 177.7664,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair16 = {
        location = vector3(798.9503, -756.8265, 26.2439),
        exit = vector3(798.1124, -756.7364, 26.7808),
        heading = 177.7664,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair17 = {
        location = vector3(804.2139, -755.3982, 26.2439),
        exit = vector3(804.3322, -753.5081, 26.7808),
        heading = 87.6688,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair18 = {
        location = vector3(804.2566, -754.5535, 26.2439),
        exit = vector3(804.3322, -753.5081, 26.7808),
        heading = 87.6688,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair19 = {
        location = vector3(802.7618, -755.4382, 26.2439),
        exit = vector3(802.8551, -753.5139, 26.7808),
        heading = 270.4141,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair20 = {
        location = vector3(802.7527, -754.6693, 26.2439),
        exit = vector3(802.8551, -753.5139, 26.7808),
        heading = 270.4141,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair21 = {
        location = vector3(802.0773, -755.3781, 26.2439),
        exit = vector3(802.2761, -753.5103, 26.7808),
        heading = 85.5047,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair22 = {
        location = vector3(802.1514, -754.3302, 26.2439),
        exit = vector3(802.2761, -753.5103, 26.7808),
        heading = 85.5047,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair23 = {
        location = vector3(800.6604, -755.4786, 26.2439),
        exit = vector3(800.6614, -753.5587, 26.7808),
        heading = 267.2666,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair24 = {
        location = vector3(800.6803, -754.4625, 26.2439),
        exit = vector3(800.6614, -753.5587, 26.7808),
        heading = 267.2666,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
}

Config.outchairs = {
    Chair1 = {
        location = vector3(799.0930, -747.1089, 26.2439),
        exit = vector3(799.1064, -745.9997, 26.7812),
        heading = 73.2018,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair2 = {
        location = vector3(796.7510, -747.1431, 26.2439),
        exit = vector3(796.7103, -746.1446, 26.7812),
        heading = 270.2487,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair3 = {
        location = vector3(799.4834, -741.3081, 26.2439),
        exit = vector3(799.2997, -742.3445, 26.7767),
        heading =  112.6550,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair4 = {
        location = vector3(796.9412, -741.3240, 26.2439),
        exit = vector3(797.2413, -742.2920, 26.7819),
        heading = 262.3773,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair5 = {
        location = vector3(803.3563, -741.3588, 26.2439),
        exit = vector3(803.3223, -742.1567, 26.7766),
        heading = 266.5312,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair6 = {
        location = vector3(805.7701, -741.3286, 26.2439),
        exit = vector3(805.7477, -742.2982, 26.7812),
        heading = 110.6665,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair7 = {
        location = vector3(808.8525, -741.3570, 26.2439),
        exit = vector3(808.7111, -742.5034, 26.7771),
        heading = 257.9300,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair8 = {
        location = vector3(811.3491, -741.2985, 26.2439),
        exit = vector3(811.3436, -742.1997, 26.7765),
        heading = 93.9699,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair9 = {
        location = vector3(809.8326, -747.1068, 26.2439),
        exit = vector3(809.6992, -746.2802, 26.7812),
        heading = 287.0059,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
    Chair10 = {
        location = vector3(812.2604, -747.0752, 26.2439),
        exit = vector3(812.2202, -746.2343, 26.7761),
        heading = 90.5508,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
          distance = 1.0
    },
}

Config.basement = {
    Chair1 = {
        location = vector3(809.8254, -757.3917, 21.8195),
        exit = vector3(810.4269, -757.4044, 22.2958),
        heading = 172.0850,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair2 = {
        location = vector3(808.6676, -758.5249, 21.8195),
        exit = vector3(808.6462, -757.7222, 22.2958),
        heading = 270.5215,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair3 = {
        location = vector3(809.7435, -759.6941, 21.8195),
        exit = vector3(810.3101, -759.7323, 22.2966),
        heading = 349.1624,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
}

Config.office = {
    Chair1 = {
        location = vector3(796.1721, -767.5078, 30.7437),
        exit = vector3(796.8641, -767.5742, 31.2652),
        heading = 354.5157,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair2 = {
        location = vector3(795.3725, -763.9109, 30.7437),
        exit = vector3(795.3730, -764.4658, 31.2659),
        heading = 177.0811,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair3 = {
        location = vector3(796.0966, -763.9414, 30.7437),
        exit = vector3(796.0644, -764.5061, 31.2604),
        heading = 176.7323,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair4 = {
        location = vector3(796.8585, -763.8663, 30.7437),
        exit = vector3(796.8716, -764.4677, 31.2659),
        heading = 176.7316,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair5 = {
        location = vector3(804.1477, -758.8411, 30.7437),
        exit = vector3(803.6208, -761.3416, 31.2659),
        heading = 264.6456,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair6 = {
        location = vector3(803.8720, -759.5983, 30.7437),
        exit = vector3(803.6208, -761.3416, 31.2659),
        heading = 265.6683,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair7 = {
        location = vector3(803.9561, -760.5806, 30.7437),
        exit = vector3(803.6208, -761.3416, 31.2659),
        heading = 276.4454,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair8 = {
        location = vector3(805.6526, -758.8730, 30.7437),
        exit = vector3(806.2313, -761.0455, 31.2659),
        heading = 86.4049,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair9 = {
        location = vector3(805.5387, -759.6064, 30.7437),
        exit = vector3(806.2313, -761.0455, 31.2659),
        heading = 89.8204,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair10 = {
        location = vector3(805.6339, -760.5323, 30.7437),
        exit = vector3(806.2313, -761.0455, 31.2659),
        heading = 78.9228,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair11 = {
        location = vector3(804.8314, -761.5091, 30.7437),
        exit = vector3(804.1132, -761.8618, 31.2659),
        heading = 11.4814,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair12 = {
        location = vector3(797.8648, -750.4394, 30.7437),
        exit = vector3(798.6677, -750.3592, 31.2654),
        heading = 176.1998,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair13 = {
        location = vector3(798.5612, -752.7413, 30.7437),
        exit = vector3(799.3556, -752.7531, 31.2659),
        heading = 24.7556,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair14 = {
        location = vector3(797.2010, -752.7624, 30.7437),
        exit = vector3(796.4719, -752.5413, 31.2653),
        heading = 343.7964,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair15 = {
        location = vector3(800.8578, -757.3355, 30.7437),
        exit = vector3(800.1740, -757.1422, 31.2659),
        heading = 342.9198,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair16 = {
        location = vector3(802.1959, -757.3634, 30.7437),
        exit = vector3(800.0610, -756.5226, 31.2659),
        heading = 12.8425,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair17 = {
        location = vector3(803.2731, -756.3262, 30.7437),
        exit = vector3(803.0516, -755.4145, 31.2659),
        heading = 82.2629,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
    Chair18 = {
        location = vector3(802.5073, -749.3772, 30.7437),
        exit = vector3(801.4498, -749.8552, 31.2659),
        heading = 150.8280,
        width = 0.6,
        height = 0.6,
        minZ = 21.0,
        maxZ = 22.45,
        debugPoly = false,
           distance = 1.9
    },
}

Config.Tables = {
    Table1 = {
        name = "Outside_table_1",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 1.2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(797.8831, -747.1302, 26.8004),
        rotation = 270.9570,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table2 = {
        name = "Outside_table_2",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 1.2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(798.2420, -741.3053, 26.8004),
        rotation = 92.2085,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table3 = {
        name = "Outside_table_3",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 1.2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(804.6000, -741.3152, 26.8004),
        rotation = 269.8300,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table4 = {
        name = "Outside_table_4",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 1.2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(810.1318, -741.3100, 26.8004),
        rotation = 90.3253,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table5 = {
        name = "Outside_table_5",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 1.2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(811.0862, -747.1315, 26.8004),
        rotation = 267.7702,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table6 = {
        name = "Table_1",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(807.0516, -751.5807, 26.8014),
        rotation = 180.3433,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table7 = {
        name = "Table_2",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(803.1108, -751.5789, 26.8014),
        rotation = 270.8235,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table8 = {
        name = "Table_3",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(799.1196, -751.5687, 26.8014),
        rotation = 90.3425,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table9 = {
        name = "Table_4",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(797.9775, -748.8698, 26.8014),
        rotation = 92.6395,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table9 = {
        name = "Table_5",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(797.9775, -748.8698, 26.8014),
        rotation = 92.6395,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table10 = {
        name = "Table_6",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(795.2404, -751.5764, 26.8014),
        rotation = 0.6887,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table11 = {
        name = "Table_7",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.2, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(799.4689, -755.0325, 26.8014),
        rotation = 267.4726,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table12 = {
        name = "Table_8",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.8, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(796.6345, -764.9539, 26.2014),
        rotation = 90.7460,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table13 = {
        name = "Table_9",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(2.0, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(807.6548, -754.8579, 26.4014),
        rotation = 89.6468,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table14 = {
        name = "Table_10",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(2.0, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(805.6160, -754.8579, 26.4014),
        rotation = 89.6468,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table15 = {
        name = "Table_11",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(2.0, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(803.5142, -754.8579, 26.4014),
        rotation = 89.6468,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table16 = {
        name = "Table_12",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(2.0, 1.3, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(801.4106, -754.8579, 26.4014),
        rotation = 89.6468,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table17 = {
        name = "Table_13",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.5, 0.9, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(799.3034, -757.6217, 26.4014),
        rotation = 178.2141,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table18 = {
        name = "Table_14",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.5, 0.9, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(799.3034, -759.6967, 26.4014),
        rotation = 178.2141,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table19 = {
        name = "Desk_table_1",
        label = "Desk",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(6.1, 0.6, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(810.8881, -752.746, 27.0359),
        rotation = 270.1525,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table20 = {
        name = "Basement_table_1",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.1, 1.2, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(809.9075, -758.4718, 22.2508),
        rotation = 357.9638,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table21 = {
        name = "Office_table_1",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.6, 1.0, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(796.6287, -760.4232, 30.8222),
        rotation = 88.4938,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
    Table22 = {
        name = "Office_table_2",
        label = "Table",
        TargetIcon = "fas fa-tablet",
        TargetLabel = locale("table"),
        Targetdistance = 2,
        size = vec3(1.6, 1.0, 0.5),
        slots = 10,
        weight = 50000,
        coords = vec3(801.5519, -756.0878, 30.8222),
        rotation = 0.2746,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = false
    },
}

Config.Stash = {
    Stash1 = {
        name = "Stash_1",
        label = "Stash",
        TargetIcon = "fa-solid fa-box",
        TargetLabel = locale("stash"),
        Targetdistance = 2,
        size = vec3(0.6, 4.0, 2.5),
        slots = 200,
        weight = 1000000,
        coords = vec3(802.8445, -756.7932, 27.2943),
        rotation = 270.9570,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = ({["pizzajob"] = 0})
    },
    Stash2 = {
        name = "Stash_2",
        label = "Stash",
        TargetIcon = "fa-solid fa-box",
        TargetLabel = locale("stash"),
        Targetdistance = 2,
        size = vec3(1.3, 0.9, 2.0),
        slots = 200,
        weight = 1000000,
        coords = vec3(805.5864, -761.6695, 27.0943),
        rotation = 270.9570,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = ({["pizzajob"] = 0})
    },
    Stash3 = {
        name = "Stash_3",
        label = "Stash",
        TargetIcon = "fa-solid fa-box",
        TargetLabel = locale("stash"),
        Targetdistance = 2,
        size = vec3(0.7, 0.9, 1.2),
        slots = 200,
        weight = 1000000,
        coords = vec3(796.5487, -748.6163, 30.9360),
        rotation = 0.0000,
        radius = 0.85,
        debug = false,
        owner = false,
        groups = ({["pizzajob"] = 3})
    },
    Stash4 = {
        name = "Locker ",
        label = "Locker",
        TargetIcon = "fa-solid fa-box",
        TargetLabel = locale("stash"),
        Targetdistance = 2,
        size = vec3(1.2, 0.4, 1.8),
        slots = 50,
        weight = 100000,
        coords = vec3(811.0871, -764.3984, 31.2028),
        rotation = 90.0000,
        radius = 0.85,
        debug = false,
        owner = true,
        groups = false
    },
}

Config.Consumables = {

    coffee_mug = { -- Item name
    Log = "The person is drinking coffee_mug",
    Remove = true, -- Remove item
    RemoveItem = "coffee_mug", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_mug", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    green_tea = { -- Item name
    Log = "The person is drinking green_tea",
    Remove = true, -- Remove item
    RemoveItem = "green_tea", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_mug", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    espresso = { -- Item name
    Log = "The person is drinking espresso",
    Remove = true, -- Remove item
    RemoveItem = "espresso", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_mug", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    macchiato = { -- Item name
    Log = "The person is drinking macchiato",
    Remove = true, -- Remove item
    RemoveItem = "macchiato", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_mug", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    ecola = { -- Item name
    Log = "The person is drinking ecola",
    Remove = true, -- Remove item
    RemoveItem = "ecola", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_cup", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    sprunk = { -- Item name
    Log = "The person is drinking sprunk",
    Remove = true, -- Remove item
    RemoveItem = "sprunk", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_cup", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    eorange = { -- Item name
    Log = "The person is drinking eorange",
    Remove = true, -- Remove item
    RemoveItem = "eorange", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_cup", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    lemonade = { -- Item name
    Log = "The person is drinking lemonade",
    Remove = true, -- Remove item
    RemoveItem = "lemonade", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_cup", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    blackbeer = { -- Item name
    Log = "The person is drinking blackbeer",
    Remove = true, -- Remove item
    RemoveItem = "blackbeer", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_beer_mug", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    redbeer = { -- Item name
    Log = "The person is drinking redbeer",
    Remove = true, -- Remove item
    RemoveItem = "redbeer", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_beer_mug", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    beer = { -- Item name
    Log = "The person is drinking beer",
    Remove = true, -- Remove item
    RemoveItem = "beer", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_beer_mug", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    red_wine_glass = { -- Item name
    Log = "The person is drinking red_wine_glass",
    Remove = true, -- Remove item
    RemoveItem = "red_wine_glass", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_wine_glass", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    white_wine_glass = { -- Item name
    Log = "The person is drinking white_wine_glass",
    Remove = true, -- Remove item
    RemoveItem = "white_wine_glass", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_wine_glass", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 6500,
    Effect = { status = "thirst", add = 10000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    white_wine_bottle = { -- Item name
    Log = "The person is drinking white_wine_bottle",
    Remove = true, -- Remove item
    RemoveItem = "white_wine_bottle", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = false,
    AddItem = "dirty_wine_glass", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 9500,
    Effect = { status = "thirst", add = 30000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    red_wine = { -- Item name
    Log = "The person is drinking red_wine",
    Remove = true, -- Remove item
    RemoveItem = "red_wine", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = false,
    AddItem = "dirty_wine_glass", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "Drinking...",
    duration = 9500,
    Effect = { status = "thirst", add = 30000 },
        animation = {
            emote = {
                enabled = true,
                anim = {
                dict = 'amb@world_human_drinking@coffee@male@idle_a',
                clip = 'idle_c'
            },
            prop = {
                model = 'p_amb_coffeecup_01',
                bone = 57005,
                pos = vec3(0.15, 0.02, -0.03),
                rot = vec3(-70.0, 30.0, 10.0)
            },
            },
            scenario = {
                enabled = false,
                anim = {
                scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
            },
        },
    }
    },
    quattro_stagioni = { -- Item name
    Log = "The person is eating quattro_stagioni",
    Remove = true, -- Remove item
    RemoveItem = "quattro_stagioni", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate3", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    diavola = { -- Item name
    Log = "The person is eating diavola",
    Remove = true, -- Remove item
    RemoveItem = "diavola", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate3", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    napoli_pizza = { -- Item name
    Log = "The person is eating napoli_pizza",
    Remove = true, -- Remove item
    RemoveItem = "napoli_pizza", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate3", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    capricciosa = { -- Item name
    Log = "The person is eating capricciosa",
    Remove = true, -- Remove item
    RemoveItem = "capricciosa", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate3", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    margherita_pizza = { -- Item name
    Log = "The person is eating margherita_pizza",
    Remove = true, -- Remove item
    RemoveItem = "margherita_pizza", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate3", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    tomato_bruschetta = { -- Item name
    Log = "The person is eating tomato_bruschetta",
    Remove = true, -- Remove item
    RemoveItem = "tomato_bruschetta", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = false,
    AddItem = "dirty_plate3", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    parma_ham_and_melon = { -- Item name
    Log = "The person is eating parma_ham_and_melon",
    Remove = true, -- Remove item
    RemoveItem = "parma_ham_and_melon", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    beef_carpaccio = { -- Item name
    Log = "The person is eating beef_carpaccio",
    Remove = true, -- Remove item
    RemoveItem = "beef_carpaccio", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate2", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    caprese_salad = { -- Item name
    Log = "The person is eating caprese_salad",
    Remove = true, -- Remove item
    RemoveItem = "caprese_salad", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate2", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    minestrone = { -- Item name
    Log = "The person is eating minestrone",
    Remove = true, -- Remove item
    RemoveItem = "minestrone", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_bowl", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    ribollita = { -- Item name
    Log = "The person is eating ribollita",
    Remove = true, -- Remove item
    RemoveItem = "ribollita", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_bowl", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    tagliatelle_with_bolognese_sauce = { -- Item name
    Log = "The person is eating tagliatelle_with_bolognese_sauce",
    Remove = true, -- Remove item
    RemoveItem = "tagliatelle_with_bolognese_sauce", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate2", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    spaghetti_carbonara = { -- Item name
    Log = "The person is eating spaghetti_carbonara",
    Remove = true, -- Remove item
    RemoveItem = "spaghetti_carbonara", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate2", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    bolognese_lasagna = { -- Item name
    Log = "The person is eating bolognese_lasagna",
    Remove = true, -- Remove item
    RemoveItem = "bolognese_lasagna", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    tiramisu = { -- Item name
    Log = "The person is eating tiramisu",
    Remove = true, -- Remove item
    RemoveItem = "tiramisu", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    cannoli_siciliani = { -- Item name
    Log = "The person is eating cannoli_siciliani",
    Remove = true, -- Remove item
    RemoveItem = "cannoli_siciliani", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    panna_cotta = { -- Item name
    Log = "The person is eating panna_cotta",
    Remove = true, -- Remove item
    RemoveItem = "panna_cotta", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
    caprese_cake = { -- Item name
    Log = "The person is eating caprese_cake",
    Remove = true, -- Remove item
    RemoveItem = "caprese_cake", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "dirty_plate", -- Remove Item name
    AddItemCount = 1, -- Remove Item Count
    ProgressBar = "eating...",
    duration = 6500,
    Effect = { status = "hunger", add = 10000 },
    animation = {
        emote = {
            enabled = true,
            anim = {
                dict = 'mp_player_inteat@burger',
                clip = 'mp_player_int_eat_burger'
            },
            prop = {
                model = 'prop_cs_burger_01',
                bone = 18905,
                pos = vec3(0.13, 0.06, 0.02),
                rot = vec3(-130.0, -7.0, 0.0)
            },
        },
        scenario = {
            enabled = false,
            anim = {
                scenario = "WORLD_HUMAN_SMOKING_POT"
            },
        },
    }
    },
}

Config.BagsItems = {

    coffee_100 = { -- Item name
    Log = "The person is opening coffee_100",
    Remove = true, -- Remove item
    RemoveItem = "coffee_100", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "finely_ground_coffee", -- Remove Item name
    AddItemCount = 100, -- Remove Item Count
    ProgressBar = "Opening...",
    duration = 6500,
    animation = {
        duration = 5000,
        useWhileDead = false,
        canCancel = false,
        dict = 'mp_arresting',
        clip = 'a_uncuff'
    }
    },

    green_tea_box = { -- Item name
    Log = "The person is opening green_tea_box",
    Remove = true, -- Remove item
    RemoveItem = "green_tea_box", -- Remove Item name
    RemoveItemCount = 1, -- Remove Item Count
    Add = true,
    AddItem = "green_tea_bag", -- Remove Item name
    AddItemCount = 10, -- Remove Item Count
    ProgressBar = "Opening...",
    duration = 6500,
    animation = {
        duration = 5000,
        useWhileDead = false,
        canCancel = false,
        dict = 'mp_arresting',
        clip = 'a_uncuff'
    }
    },
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://m4ster.gitbook.io/uniquedevelopment/resources/esx/editor/config.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
