Guest User

CONFIG

a guest
Dec 4th, 2022
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 96.14 KB | None | 0 0
  1. --ONLY CONFIG NAMED sh_config.lua will work!
  2.  
  3. Config = {}
  4.  
  5. Config.Debug = false -- Debug
  6. --SERVER SETTINGS
  7. Config.Framework = "ESX" -- Framework | types: qbcore, ESX, standalone
  8. Config.Target = "qtarget" -- Target | types: qb-target, qtarget, ox_target
  9. Config.BossMenu = "esx_society" -- BossMenu | types: esx_society, qb-management, zerio-bossmenu
  10. Config.NotificationType = "ox_lib" -- Notifications | types: ESX, ox_lib, qbcore
  11. Config.Progress = "ox_lib_square" -- ProgressBar | types: progressBars, ox_lib_square, ox_lib_circle, qbcore | Preview: ox_lib_square = https://imgur.com/bgVWs4u , ox_lib_circle = https://imgur.com/Tfq8CA0 , qbcore = https://imgur.com/ru33FYA
  12. Config.Clothing = "fivem-appearance" -- Skin / Clothing | types: esx_skin, qb-clothing, fivem-appearance, ox_appearance
  13. Config.Context = "ox_lib" -- Context | types: ox_lib, qbcore
  14. Config.Input = "ox_lib" -- Input | types: ox_lib, qb-input
  15. Config.PoliceJobs = { 'police', 'sheriff' } -- For Alert
  16. Config.Dispatch = { enabled = true, script = "linden_outlawalert" } -- cd_dispatch, linden_outlawalert, ps-disptach
  17. --PLAYER SETTINGS
  18. Config.JobName = "uwu" -- Job name for uwu
  19. Config.BossGrade = 4 -- Boss Grade
  20. Config.NeedDuty = true -- Required duty to make drinks etc.
  21. Config.NeedCleanHands = true -- Required to clean hands to make drinks etc.
  22.  
  23. Config.Logs = { enabled = true, type = "webhook" } -- use webhook or ox_lib (datadog) Can be changed in server > sv_utils.lua
  24. Config.DropPlayer = true -- Drop (Kick) Player if tries to cheat!
  25. Config.AnticheatBan = false -- Change in server/sv_Utils.lua!!! WIll not work by default you need to add your custom trigger to ban player!
  26.  
  27. Config.CatCafe = {
  28.     PolyZone = {
  29.         coords = vector3(-584.79, -1062.54, 22.68), size = vec3(47.0, 42.0, 50), rotation = 359, debug = false, RemovePeds = true, radius = 50.0
  30.     },
  31.  
  32.     ScreenURL = "https://i.ibb.co/SdgQCMH/test-7.png",
  33.  
  34.     Garage = {
  35.         Ped = {
  36.             { Model = "s_m_y_xmech_01", Coords = vec4(-597.5389, -1055.6312, 21.3442, 188.6517),
  37.                 Scenario = "WORLD_HUMAN_CLIPBOARD_FACILITY"
  38.             }
  39.         },
  40.         Vehicles = {
  41.             { Model = "nspeedo", Label = "Vapid Speedo", livery = 1, image = "https://imgur.com/Opw0pOM.png", metadata = {""}, },
  42.         },
  43.         SpawnPoints = {
  44.             { Coords = vector3(-596.5880, -1059.0718, 22.1253), Heading = 91.0356, Radius = 3.0 }
  45.         },
  46.     },
  47.  
  48.     AlertPolice = vec3(-587.25, -1061.01, 22.96),
  49.  
  50.     WarmHands = vec3(-578.84, -1049.69, 22.17),
  51.  
  52.     Delivery = vec3(-588.11, -1054.28, 22.82),
  53.  
  54.     SpawnObjects = true,
  55.  
  56.     MysteryBox = {
  57.         RequiredItems = {
  58.             { item = "uwu_mysterybox", count = 1, remove = true },
  59.         },
  60.         RandomItem = {
  61.             -- MAX 100% together
  62.             { item = "princess_robo", count = 1, chance = 12.5 },
  63.             { item = "cat_yellow", count = 1, chance = 12.5 },
  64.             { item = "cat_purple", count = 1, chance = 12.5 },
  65.             { item = "shiny_wasabi", count = 1, chance = 12.5 },
  66.             { item = "cat_red", count = 1, chance = 12.5 },
  67.             { item = "cat_green", count = 1, chance = 12.5 },
  68.             { item = "cat_blue", count = 1, chance = 12.5 },
  69.             { item = "cat_brown", count = 1, chance = 12.5 },
  70.         }
  71.     },
  72.  
  73.     Food = {
  74.         Zones = {
  75.             FrontBar = {
  76.                 coords = vector3(-591.07, -1056.52, 22.38),
  77.                 radius = 0.44,
  78.                 debug = false,
  79.             },
  80.         },
  81.         Crafting = {
  82.             Omurice = {
  83.                 Title = "Om-Nom Omurice",
  84.                 description = "Requirements: Onion, Chicken thighs, Virgin olive oil, Rice, Soy sauce, Plate",
  85.                 image = "https://imgur.com/9nXGTZx.png",
  86.                 metadata = {""},
  87.                 RequiredItems = {
  88.                     { item = "onion", count = 1, remove = true },
  89.                     { item = "chicken_thighs", count = 1, remove = true },
  90.                     { item = "virgin_olive_oil", count = 1, remove = true },
  91.                     { item = "rice", count = 1, remove = true },
  92.                     { item = "soy_sauce", count = 1, remove = true },
  93.                     { item = "plate", count = 1, remove = true },
  94.                 },
  95.                 AddItems = {
  96.                     { item = "om_nom_omurice", count = 1 },
  97.                 }
  98.             },
  99.             Currye = {
  100.                 Title = "Kira Kira Currye",
  101.                 description = "Requirements: Onion, Rice, Chicken thighs, Plate",
  102.                 image = "https://imgur.com/7FWSyuV.png",
  103.                 metadata = {""},
  104.                 RequiredItems = {
  105.                     { item = "onion", count = 1, remove = true },
  106.                     { item = "rice", count = 1, remove = true },
  107.                     { item = "chicken_thighs", count = 1, remove = true },
  108.                     { item = "plate", count = 1, remove = true },
  109.                 },
  110.                 AddItems = {
  111.                     { item = "kira_kira_currye", count = 1 },
  112.                 }
  113.             },
  114.             Sando = {
  115.                 Title = "Sugoi Katsu Sando",
  116.                 description = "Requirements: Pullman bread, Chicken breast, Egg, Flour, Butter, Plate",
  117.                 image = "https://imgur.com/yiX9EGR.png",
  118.                 metadata = {""},
  119.                 RequiredItems = {
  120.                     { item = "pullman_bread", count = 1, remove = true },
  121.                     { item = "chicken_breast", count = 1, remove = true },
  122.                     { item = "egg", count = 1, remove = true },
  123.                     { item = "flour", count = 1, remove = true },
  124.                     { item = "butter", count = 1, remove = true },
  125.                     { item = "plate", count = 1, remove = true },
  126.                 },
  127.                 AddItems = {
  128.                     { item = "sugoi_katsu_sando", count = 1 },
  129.                 }
  130.             },
  131.             Steak = {
  132.                 Title = "Hamburg Steak",
  133.                 description = "Requirements: Steak",
  134.                 image = "https://imgur.com/NTBMjQ9.png",
  135.                 metadata = {""},
  136.                 RequiredItems = {
  137.                     { item = "steak", count = 1, remove = true },
  138.                 },
  139.                 AddItems = {
  140.                     { item = "hamburg_steak", count = 1 },
  141.                 }
  142.             },
  143.         },
  144.     },
  145.  
  146.     Sinks = {
  147.         Zones = {
  148.             FrontBar = {
  149.                 coords = vector3(-587.96, -1062.59, 22.34),
  150.                 radius = 0.45,
  151.                 debug = false,
  152.                 WaterStream = vector3(-587.62, -1062.55, 22.44),
  153.             },
  154.         },
  155.         Crafting = {
  156.             CleanTallGlass = {
  157.                 Title = "Clean Tall Glass",
  158.                 description = "Requirements: Dirty Tall Glass",
  159.                 image = "https://imgur.com/LigkwIc.png",
  160.                 metadata = {""},
  161.                 prop = `prop_sh_tall_glass`,
  162.                 RequiredItems = {
  163.                     { item = "glass_tall_dirty", count = 1, remove = true },
  164.                 },
  165.                 AddItems = {
  166.                     { item = "glass_tall", count = 1 },
  167.                 }
  168.             },
  169.             CleanBowl = {
  170.                 Title = "Clean Bowl",
  171.                 description = "Requirements: Dirty Bowl",
  172.                 image = "https://imgur.com/IFIsmgD.png",
  173.                 metadata = {""},
  174.                 prop = `prop_bar_beans`,
  175.                 RequiredItems = {
  176.                     { item = "bar_bowl_dirty", count = 1, remove = true },
  177.                 },
  178.                 AddItems = {
  179.                     { item = "bar_bowl", count = 1 },
  180.                 }
  181.             },
  182.             CleanPlate = {
  183.                 Title = "Clean Plate",
  184.                 description = "Requirements: Dirty Plate",
  185.                 image = "https://imgur.com/HmzDujF.png",
  186.                 metadata = {""},
  187.                 prop = `v_ret_fh_plate3`,
  188.                 RequiredItems = {
  189.                     { item = "plate_dirty", count = 1, remove = true },
  190.                 },
  191.                 AddItems = {
  192.                     { item = "plate", count = 1 },
  193.                 }
  194.             },
  195.             CleanCup = {
  196.                 Title = "Clean Cup",
  197.                 description = "Requirements: Dirty Cup",
  198.                 image = "https://imgur.com/r5SGdgW.png",
  199.                 metadata = {""},
  200.                 prop = `v_ret_gc_cup`,
  201.                 RequiredItems = {
  202.                     { item = "cup_dirty", count = 1, remove = true },
  203.                 },
  204.                 AddItems = {
  205.                     { item = "cup", count = 1 },
  206.                 }
  207.             },
  208.         },
  209.     },
  210.  
  211.     Duty = {
  212.         Main = { coords = vector3(-594.35, -1054.15, 23.04), radius = 0.6, debug = false },
  213.     },
  214.  
  215.     CloakRoom = {
  216.         Main = { coords = vector3(-586.2766, -1049.7133, 22.4092), radius = 0.7, debug = false },
  217.     },
  218.  
  219.     Coffeemachine = {
  220.         Zones = {
  221.             Main = { coords = vector3(-586.74, -1061.95, 22.64), radius = 0.4, debug = false },
  222.         },
  223.         Crafting = {
  224.             Coffee1 = {
  225.                 Title = "Matcha Coffee",
  226.                 description = "Requirements: Matcha Powder, Milk, Brewed coffee",
  227.                 image = "https://imgur.com/1W9OBmr.png",
  228.                 metadata = {""},
  229.                 RequiredItems = {
  230.                     { item = "matcha_powder", count = 1, remove = true },
  231.                     { item = "milk", count = 1, remove = true },
  232.                     { item = "brewed_coffee", count = 1, remove = true },
  233.                 },
  234.                 AddItems = {
  235.                     { item = "matcha_coffee", count = 1 },
  236.                 }
  237.             },
  238.             Coffee2 = {
  239.                 Title = "Hot Chocolate",
  240.                 description = "Requirements: Sugar, Cocoa powder, Milk, Cup",
  241.                 image = "https://imgur.com/gtyfDzf.png",
  242.                 metadata = {""},
  243.                 RequiredItems = {
  244.                     { item = "sugar", count = 1, remove = true },
  245.                     { item = "cocoa_powder", count = 1, remove = true },
  246.                     { item = "milk", count = 1, remove = true },
  247.                     { item = "cup", count = 1, remove = true },
  248.                 },
  249.                 AddItems = {
  250.                     { item = "hot_chocolate", count = 1 },
  251.                 }
  252.             },
  253.             Coffee3 = {
  254.                 Title = "Lovely Hot Chocolate",
  255.                 description = "Requirements: Sugar, Cocoa powder, Milk, Cup",
  256.                 image = "https://imgur.com/2jfF9nR.png",
  257.                 metadata = {""},
  258.                 RequiredItems = {
  259.                     { item = "sugar", count = 1, remove = true },
  260.                     { item = "cocoa_powder", count = 1, remove = true },
  261.                     { item = "milk", count = 1, remove = true },
  262.                     { item = "cup", count = 1, remove = true },
  263.                 },
  264.                 AddItems = {
  265.                     { item = "lovely_hot_chocolate", count = 1 },
  266.                 }
  267.             },
  268.         },
  269.     },
  270.  
  271.     Tea = {
  272.         Zones = {
  273.             Main = { coords = vector3(-583.98, -1058.18, 22.74), radius = 0.5, debug = false },
  274.         },
  275.        
  276.         Crafting = {
  277.             tea1 = {
  278.                 Title = "Booba Milk Tea",
  279.                 description = "Requirements: Dried boba tapioca pearls, Sugar, Milk, Juice, Ice",
  280.                 image = "https://imgur.com/TAKAdu9.png",
  281.                 metadata = {""},
  282.                 RequiredItems = {
  283.                     { item = "dried_boba_tapioca_pearls", count = 1, remove = true },
  284.                     { item = "sugar", count = 1, remove = true },
  285.                     { item = "milk", count = 1, remove = true },
  286.                     { item = "juice", count = 1, remove = true },
  287.                     { item = "ice", count = 1, remove = true },
  288.                 },
  289.                 AddItems = {
  290.                     { item = "booba_milk_tea_2", count = 1 },
  291.                 }
  292.             },
  293.             tea2 = {
  294.                 Title = "Sweet Herbal Tea",
  295.                 description = "Requirements: Lemon, Sugar, Mint, Ice, Cup",
  296.                 image = "https://imgur.com/6YVGU7f.png",
  297.                 metadata = {""},
  298.                 RequiredItems = {
  299.                     { item = "lemon", count = 1, remove = true },
  300.                     { item = "sugar", count = 1, remove = true },
  301.                     { item = "mint", count = 1, remove = true },
  302.                     { item = "ice", count = 1, remove = true },
  303.                     { item = "cup", count = 1, remove = true },
  304.                 },
  305.                 AddItems = {
  306.                     { item = "sweet_herbal_tea", count = 1 },
  307.                 }
  308.             },
  309.         },
  310.     },
  311.  
  312.     Sides = {
  313.         Zones = {
  314.             Main = { coords = vector3(-591.03, -1063.05, 22.36), radius = 0.5, debug = false },
  315.         },
  316.        
  317.         Crafting = {
  318.             RiceBalls = {
  319.                 Title = "Rice Balls",
  320.                 description = "Requirements: Rice, Sea moss",
  321.                 image = "https://imgur.com/W6vhU4W.png",
  322.                 metadata = {""},
  323.                 RequiredItems = {
  324.                     { item = "rice", count = 1, remove = true },
  325.                     { item = "sea_moss", count = 1, remove = true },
  326.                 },
  327.                 AddItems = {
  328.                     { item = "rice_balls", count = 1 },
  329.                 }
  330.             },
  331.             Soup = {
  332.                 Title = "Warm Chicken Noodle Soup",
  333.                 description = "Requirements: Noodles, Onion, Butter, Chicken, Bowl",
  334.                 image = "https://imgur.com/JytUAos.png",
  335.                 metadata = {""},
  336.                 RequiredItems = {
  337.                     { item = "noodles", count = 1, remove = true },
  338.                     { item = "onion", count = 1, remove = true },
  339.                     { item = "butter", count = 1, remove = true },
  340.                     { item = "chicken", count = 1, remove = true },
  341.                     { item = "bar_bowl", count = 1, remove = true },
  342.                 },
  343.                 AddItems = {
  344.                     { item = "warm_chicken_noodle", count = 1 },
  345.                 }
  346.             },
  347.             Chocolate = {
  348.                 Title = "Awwdorable Valentine's Chocolate",
  349.                 description = "Requirements: Sugar, Cocoa powder, Milk",
  350.                 image = "https://imgur.com/ri26Lxf.png",
  351.                 metadata = {""},
  352.                 RequiredItems = {
  353.                     { item = "sugar", count = 1, remove = true, },
  354.                     { item = "cocoa_powder", count = 1, remove = true },
  355.                     { item = "milk", count = 1, remove = true },
  356.                 },
  357.                 AddItems = {
  358.                     { item = "awwdorable_valentines_chocolate", count = 1 },
  359.                 }
  360.             },
  361.         },
  362.     },
  363.  
  364.     Deserts = {
  365.         Zones = {
  366.             Main = { coords = vector3(-590.95, -1064.1, 22.49), radius = 0.36, debug = false },
  367.         },
  368.        
  369.         Crafting = {
  370.             Shortcake = {
  371.                 Title = "Strawberry Shortcake",
  372.                 description = "Requirements: Flour, Baking powder, Strawberry, Sugar, Butter, Plate",
  373.                 image = "https://imgur.com/8l3JeEA.png",
  374.                 metadata = {""},
  375.                 RequiredItems = {
  376.                     { item = "flour", count = 1, remove = true },
  377.                     { item = "baking_powder", count = 1, remove = true },
  378.                     { item = "strawberry", count = 1, remove = true },
  379.                     { item = "sugar", count = 1, remove = true },
  380.                     { item = "butter", count = 1, remove = true },
  381.                     { item = "plate", count = 1, remove = true },
  382.                 },
  383.                 AddItems = {
  384.                     { item = "strawberry_shortcake", count = 1 },
  385.                 }
  386.             },
  387.             Cream = {
  388.                 Title = "Meowchi Mochi Ice Cream",
  389.                 description = "Requirements: Rice Flour, Sugar",
  390.                 image = "https://imgur.com/ZWTwcNC.png",
  391.                 metadata = {""},
  392.                 RequiredItems = {
  393.                     { item = "rice_flour", count = 1, remove = true },
  394.                     { item = "sugar", count = 1, remove = true },
  395.                 },
  396.                 AddItems = {
  397.                     { item = "meowchi_mochi_ice_cream", count = 1 },
  398.                 }
  399.             },
  400.             Cake = {
  401.                 Title = "Oxygen Cake",
  402.                 description = "Requirements: Sugar, Flour, Egg, Milk, Plate",
  403.                 image = "https://imgur.com/hhupM5X.png",
  404.                 metadata = {""},
  405.                 RequiredItems = {
  406.                     { item = "sugar", count = 1, remove = true },
  407.                     { item = "flour", count = 1, remove = true },
  408.                     { item = "egg", count = 1, remove = true },
  409.                     { item = "milk", count = 1, remove = true },
  410.                     { item = "plate", count = 1, remove = true },
  411.                 },
  412.                 AddItems = {
  413.                     { item = "oxygen_cake", count = 1 },
  414.                 }
  415.             },
  416.             Parfait = {
  417.                 Title = "Purrfect Parfait",
  418.                 description = "Requirements: Milk, Strawberry, Butter, Egg",
  419.                 image = "https://imgur.com/pyisFFt.png",
  420.                 metadata = {""},
  421.                 RequiredItems = {
  422.                     { item = "milk", count = 1, remove = true },
  423.                     { item = "strawberry", count = 1, remove = true },
  424.                     { item = "butter", count = 1, remove = true },
  425.                     { item = "egg", count = 1, remove = true },
  426.                 },
  427.                 AddItems = {
  428.                     { item = "purrfect_parfait", count = 1 },
  429.                 }
  430.             },
  431.             Cupcake = {
  432.                 Title = "Ballaberry Cupcake",
  433.                 description = "Requirements: Baking Powder, Egg, Sugar, Butter, Flour",
  434.                 image = "https://imgur.com/xs66dcR.png",
  435.                 metadata = {""},
  436.                 RequiredItems = {
  437.                     { item = "baking_powder", count = 1, remove = true },
  438.                     { item = "egg", count = 1, remove = true },
  439.                     { item = "sugar", count = 1, remove = true },
  440.                     { item = "butter", count = 1, remove = true },
  441.                     { item = "flour", count = 1, remove = true },
  442.                 },
  443.                 AddItems = {
  444.                     { item = "ballbarry_cupcake", count = 1 },
  445.                 }
  446.             },
  447.             Cupcake2 = {
  448.                 Title = "Dragon's Fire Cupcake",
  449.                 description = "Requirements: Milk, Egg, Butter",
  450.                 image = "https://imgur.com/FLbfsxr.png",
  451.                 metadata = {""},
  452.                 RequiredItems = {
  453.                     { item = "milk", count = 1, remove = true },
  454.                     { item = "egg", count = 1, remove = true },
  455.                     { item = "butter", count = 1, remove = true },
  456.                 },
  457.                 AddItems = {
  458.                     { item = "dragos_fire_cupcake", count = 1 },
  459.                 }
  460.             },
  461.             Cookie = {
  462.                 Title = "GingerKitty Cookie",
  463.                 description = "Requirements: Egg, Lemon, Baking Powder",
  464.                 image = "https://imgur.com/28S60e7.png",
  465.                 metadata = {""},
  466.                 RequiredItems = {
  467.                     { item = "egg", count = 1, remove = true },
  468.                     { item = "lemon", count = 1, remove = true },
  469.                     { item = "baking_powder", count = 1, remove = true },
  470.                 },
  471.                 AddItems = {
  472.                     { item = "gingerkitty_cookie", count = 1 },
  473.                 }
  474.             },
  475.             Pancakes = {
  476.                 Title = "Doki Doki Pancakes",
  477.                 description = "Requirements: Flour, Milk, Egg",
  478.                 image = "https://imgur.com/U2PxveN.png",
  479.                 metadata = {""},
  480.                 RequiredItems = {
  481.                     { item = "flour", count = 1, remove = true },
  482.                     { item = "milk", count = 1, remove = true },
  483.                     { item = "egg", count = 1, remove = true },
  484.                 },
  485.                 AddItems = {
  486.                     { item = "doki_doki_pancakes", count = 1 },
  487.                 }
  488.             },
  489.         },
  490.     },
  491.  
  492.     Oven = {
  493.         Zones = {
  494.             Main = { coords = vector3(-590.6, -1059.81, 22.65), radius = 0.36, debug = false },
  495.         },
  496.        
  497.         Crafting = {
  498.             MacaroonBrown = {
  499.                 Title = "Brown cat macaroon",
  500.                 description = "Requirements: Flour, Egg, Sugar, Brown dye",
  501.                 image = "https://imgur.com/fMS4kwy.png",
  502.                 metadata = {""},
  503.                 RequiredItems = {
  504.                     { item = "flour", count = 1, remove = true },
  505.                     { item = "egg", count = 1, remove = true },
  506.                     { item = "sugar", count = 1, remove = true },
  507.                     { item = "brown_dye", count = 1, remove = true },
  508.                 },
  509.                 AddItems = {
  510.                     { item = "cat_macaroon_brown", count = 1 },
  511.                 }
  512.             },
  513.             MacaroonPink = {
  514.                 Title = "Pink cat macaroon",
  515.                 description = "Requirements: Flour, Egg, Sugar, Pink dye",
  516.                 image = "https://imgur.com/btqMgYP.png",
  517.                 metadata = {""},
  518.                 RequiredItems = {
  519.                     { item = "flour", count = 1, remove = true },
  520.                     { item = "egg", count = 1, remove = true },
  521.                     { item = "sugar", count = 1, remove = true },
  522.                     { item = "pink_dye", count = 1, remove = true },
  523.                 },
  524.                 AddItems = {
  525.                     { item = "cat_macaroon_pink", count = 1 },
  526.                 }
  527.             },
  528.             MacaroonTurquoise = {
  529.                 Title = "Turquoise cat macaroon",
  530.                 description = "Requirements: Flour, Egg, Sugar, Turquoise dye",
  531.                 image = "https://imgur.com/RkAz8Tc.png",
  532.                 metadata = {""},
  533.                 RequiredItems = {
  534.                     { item = "flour", count = 1, remove = true },
  535.                     { item = "egg", count = 1, remove = true },
  536.                     { item = "sugar", count = 1, remove = true },
  537.                     { item = "turquoise_dye", count = 1, remove = true },
  538.                 },
  539.                 AddItems = {
  540.                     { item = "cat_macaroon_turquoise", count = 1 },
  541.                 }
  542.             },
  543.             MacaroonGreen = {
  544.                 Title = "Green cat macaroon",
  545.                 description = "Requirements: Flour, Egg, Sugar, Green dye",
  546.                 image = "https://imgur.com/fGQcYrw.png",
  547.                 metadata = {""},
  548.                 RequiredItems = {
  549.                     { item = "flour", count = 1, remove = true },
  550.                     { item = "egg", count = 1, remove = true },
  551.                     { item = "sugar", count = 1, remove = true },
  552.                     { item = "green_dye", count = 1, remove = true },
  553.                 },
  554.                 AddItems = {
  555.                     { item = "cat_macaroon_green", count = 1 },
  556.                 }
  557.             },
  558.         },
  559.     },
  560.  
  561.     BossMenu = {
  562.         Main = { coords = vector3(-577.7687, -1066.8713, 26.5152), radius = 0.7, debug = false },
  563.     },
  564.  
  565.     IceMachine = {
  566.         Zones = {
  567.             FrontBar = { coords = vector3(-589.35, -1068.52, 21.84), radius = 0.7, debug = false },
  568.         },
  569.         Crafting = {
  570.             Ice = {
  571.                 Title = "Get Ice Cube",
  572.                 description = "Get ice cube to drinks!",
  573.                 RequiredItems = {
  574.                     --{ item = nil, count = 1, remove = false },
  575.                 },
  576.                 AddItems = {
  577.                     { item = "ice", count = 1 },
  578.                 }
  579.             },
  580.         },
  581.     },
  582.  
  583.     Registers = {
  584.         FrontBar = { coords = vector3(-584.03, -1061.47, 22.34), radius = 0.25, debug = false, amount = 0 },
  585.         BackBar = { coords = vector3(-583.99, -1058.74, 22.34), radius = 0.25, debug = false, amount = 0 },
  586.     },
  587.  
  588.  
  589.     Stashes = {
  590.         Stash1 = {
  591.             name = "Uwu_Stash1",
  592.             label = "Uwu Stash 1",
  593.             TargetIcon = "fas fa-warehouse",
  594.             TargetLabel = "Stash",
  595.             Slots = 20,
  596.             Weight = 50000, -- 50 KG
  597.             coords = vector3(-587.99, -1058.07, 21.89),
  598.             radius = 0.5,
  599.             debug = false,
  600.             job = "unicorn"
  601.         },
  602.  
  603.         Stash2 = {
  604.             name = "Uwu_Stash2",
  605.             label = "Uwu Stash 2",
  606.             TargetIcon = "fas fa-warehouse",
  607.             TargetLabel = "Stash",
  608.             Slots = 20,
  609.             Weight = 50000, -- 50 KG
  610.             coords = vector3(-587.79, -1060.18, 21.81),
  611.             radius = 0.5,
  612.             debug = false,
  613.             job = "unicorn"
  614.         },
  615.  
  616.         Refregiato3 = {
  617.             name = "Uwu_Refregiator3",
  618.             label = "Uwu Refregiator 3",
  619.             TargetIcon = "fas fa-ice-cream",
  620.             TargetLabel = "Refregiator",
  621.             Slots = 20,
  622.             Weight = 50000, -- 50 KG
  623.             coords = vector3(-590.89, -1058.66, 22.62),
  624.             radius = 0.7,
  625.             debug = false,
  626.             job = "unicorn"
  627.         },
  628.  
  629.         Stash4 = {
  630.             name = "Uwu_Stash4",
  631.             label = "Uwu Stash 4",
  632.             TargetIcon = "fas fa-warehouse",
  633.             TargetLabel = "Stash",
  634.             Slots = 20,
  635.             Weight = 50000, -- 50 KG
  636.             coords = vector3(-587.41, -1059.71, 22.53),
  637.             radius = 0.7,
  638.             debug = false,
  639.             job = "unicorn"
  640.         },
  641.  
  642.         Stash5 = {
  643.             name = "Uwu_Stash5",
  644.             label = "Uwu Stash 5",
  645.             TargetIcon = "fas fa-warehouse",
  646.             TargetLabel = "Stash",
  647.             Slots = 20,
  648.             Weight = 50000, -- 50 KG
  649.             coords = vector3(-585.25, -1055.29, 22.34),
  650.             radius = 0.78,
  651.             debug = false,
  652.             job = "unicorn"
  653.         },
  654.  
  655.         Stash6 = {
  656.             name = "Uwu_Stash6",
  657.             label = "Uwu Stash 6",
  658.             TargetIcon = "fas fa-warehouse",
  659.             TargetLabel = "Stash",
  660.             Slots = 20,
  661.             Weight = 50000, -- 50 KG
  662.             coords = vector3(-588.02, -1066.11, 22.34),
  663.             radius = 0.8,
  664.             debug = false,
  665.             job = "unicorn"
  666.         },
  667.  
  668.         Stash7 = {
  669.             name = "Uwu_Stash7",
  670.             label = "Uwu Stash 7",
  671.             TargetIcon = "fas fa-warehouse",
  672.             TargetLabel = "Stash",
  673.             Slots = 20,
  674.             Weight = 50000, -- 50 KG
  675.             coords = vector3(-588.03, -1067.97, 22.34),
  676.             radius = 0.8,
  677.             debug = false,
  678.             job = "unicorn"
  679.         },
  680.  
  681.        Stash8 = {
  682.             name = "Uwu_Stash8",
  683.             label = "Uwu Stash 8",
  684.             TargetIcon = "fas fa-warehouse",
  685.             TargetLabel = "Stash",
  686.             Slots = 20,
  687.             Weight = 50000, -- 50 KG
  688.             coords = vector3(-590.6, -1068.04, 22.34),
  689.             radius = 0.8,
  690.             debug = false,
  691.             job = "unicorn"
  692.         },
  693.  
  694.         Stash9 = {
  695.             name = "Uwu_Stash9",
  696.             label = "Uwu Stash 9",
  697.             TargetIcon = "fas fa-warehouse",
  698.             TargetLabel = "Stash",
  699.             Slots = 20,
  700.             Weight = 50000, -- 50 KG
  701.             coords = vector3(-598.38, -1062.47, 22.99),
  702.             radius = 1.55,
  703.             debug = false,
  704.             job = "unicorn"
  705.         },
  706.  
  707.        Stash10 = {
  708.             name = "Uwu_Stash10",
  709.             label = "Uwu Stash 10",
  710.             TargetIcon = "fas fa-warehouse",
  711.             TargetLabel = "Stash",
  712.             Slots = 20,
  713.             Weight = 50000, -- 50 KG
  714.             coords = vector3(-597.69, -1065.61, 22.99),
  715.             radius = 1.55,
  716.             debug = false,
  717.             job = "unicorn"
  718.         },
  719.  
  720.        Stash11 = {
  721.             name = "Uwu_Stash11",
  722.             label = "Uwu Stash 11",
  723.             TargetIcon = "fas fa-warehouse",
  724.             TargetLabel = "Stash",
  725.             Slots = 20,
  726.             Weight = 50000, -- 50 KG
  727.             coords = vector3(-598.06, -1068.31, 22.99),
  728.             radius = 1.55,
  729.             debug = false,
  730.             job = "unicorn"
  731.         },
  732.  
  733.         Table = {
  734.             name = "Uwu_Table",
  735.             label = "Uwu Table",
  736.             TargetIcon = "fas fa-tablet",
  737.             TargetLabel = "Table",
  738.             Slots = 20,
  739.             Weight = 50000, -- 50 KG
  740.             coords = vector3(-573.55, -1059.8, 22.34),
  741.             radius = 0.7,
  742.             debug = false
  743.         },
  744.  
  745.         Table2 = {
  746.             name = "Uwu_Table2",
  747.             label = "Uwu Table 2",
  748.             TargetIcon = "fas fa-tablet",
  749.             TargetLabel = "Table",
  750.             Slots = 20,
  751.             Weight = 50000, -- 50 KG
  752.             coords = vector3(-573.59, -1063.41, 22.34),
  753.             radius = 0.7,
  754.             debug = false
  755.         },
  756.  
  757.         Table3 = {
  758.             name = "Uwu_Table3",
  759.             label = "Uwu Table 3",
  760.             TargetIcon = "fas fa-tablet",
  761.             TargetLabel = "Table",
  762.             Slots = 20,
  763.             Weight = 50000, -- 50 KG
  764.             coords = vector3(-573.64, -1067.07, 22.34),
  765.             radius = 0.7,
  766.             debug = false
  767.         },
  768.  
  769.         Table4 = {
  770.             name = "Uwu_Table4",
  771.             label = "Uwu Table 4",
  772.             TargetIcon = "fas fa-tablet",
  773.             TargetLabel = "Table",
  774.             Slots = 20,
  775.             Weight = 50000, -- 50 KG
  776.             coords = vector3(-575.23, -1055.6, 21.64),
  777.             radius = 0.77,
  778.             debug = false
  779.         },
  780.  
  781.         Table5 = {
  782.             name = "Uwu_Table5",
  783.             label = "Uwu Table 5",
  784.             TargetIcon = "fas fa-tablet",
  785.             TargetLabel = "Table",
  786.             Slots = 20,
  787.             Weight = 50000, -- 50 KG
  788.             coords = vector3(-578.72, -1051.1, 21.54),
  789.             radius = 0.77,
  790.             debug = false
  791.         },
  792.  
  793.         Table6 = {
  794.             name = "Uwu_Table6",
  795.             label = "Uwu Table 6",
  796.             TargetIcon = "fas fa-tablet",
  797.             TargetLabel = "Table",
  798.             Slots = 20,
  799.             Weight = 50000, -- 50 KG
  800.             coords = vector3(-586.82, -1067.69, 22.34),
  801.             radius = 0.35,
  802.             debug = false
  803.         },
  804.  
  805.         Table7 = {
  806.             name = "Uwu_Table7",
  807.             label = "Uwu Table 7",
  808.             TargetIcon = "fas fa-tablet",
  809.             TargetLabel = "Table",
  810.             Slots = 20,
  811.             Weight = 50000, -- 50 KG
  812.             coords = vector3(-586.89, -1066.61, 22.34),
  813.             radius = 0.35,
  814.             debug = false
  815.         },
  816.  
  817.         Table8 = {
  818.             name = "Uwu_Table8",
  819.             label = "Uwu Table 8",
  820.             TargetIcon = "fas fa-tablet",
  821.             TargetLabel = "Table",
  822.             Slots = 20,
  823.             Weight = 50000, -- 50 KG
  824.             coords = vector3(-586.85, -1065.67, 22.34),
  825.             radius = 0.35,
  826.             debug = false
  827.         },
  828.  
  829.         Table9 = {
  830.             name = "Uwu_Table9",
  831.             label = "Uwu Table 9",
  832.             TargetIcon = "fas fa-tablet",
  833.             TargetLabel = "Table",
  834.             Slots = 20,
  835.             Weight = 50000, -- 50 KG
  836.             coords = vector3(-586.87, -1064.63, 22.34),
  837.             radius = 0.35,
  838.             debug = false
  839.         },
  840.  
  841.         Table10 = {
  842.             name = "Uwu_Table10",
  843.             label = "Uwu Table 10",
  844.             TargetIcon = "fas fa-tablet",
  845.             TargetLabel = "Table",
  846.             Slots = 20,
  847.             Weight = 50000, -- 50 KG
  848.             coords = vector3(-571.86, -1067.26, 26.21),
  849.             radius = 0.77,
  850.             debug = false
  851.         },
  852.  
  853.         Table11 = {
  854.             name = "Uwu_Table11",
  855.             label = "Uwu Table 11",
  856.             TargetIcon = "fas fa-tablet",
  857.             TargetLabel = "Table",
  858.             Slots = 20,
  859.             Weight = 50000, -- 50 KG
  860.             coords = vector3(-573.64, -1050.82, 25.91),
  861.             radius = 0.77,
  862.             debug = false
  863.         },
  864.  
  865.         Table12 = {
  866.             name = "Uwu_Table12",
  867.             label = "Uwu Table 12",
  868.             TargetIcon = "fas fa-tablet",
  869.             TargetLabel = "Table",
  870.             Slots = 20,
  871.             Weight = 50000, -- 50 KG
  872.             coords = vector3(-590.59, -1050.56, 21.79),
  873.             radius = 0.77,
  874.             debug = false
  875.         },
  876.  
  877.         Table13 = {
  878.             name = "Uwu_Table13",
  879.             label = "Uwu Table 13",
  880.             TargetIcon = "fas fa-tablet",
  881.             TargetLabel = "Table",
  882.             Slots = 20,
  883.             Weight = 50000, -- 50 KG
  884.             coords = vector3(-586.44, -1081.63, 22.33),
  885.             radius = 1.20,
  886.             debug = false
  887.         },
  888.  
  889.         Table14 = {
  890.             name = "Uwu_Table14",
  891.             label = "Uwu Table 14",
  892.             TargetIcon = "fas fa-tablet",
  893.             TargetLabel = "Table",
  894.             Slots = 20,
  895.             Weight = 50000, -- 50 KG
  896.             coords = vector3(-586.34, -1075.99, 22.33),
  897.             radius = 1.20,
  898.             debug = false
  899.         },
  900.  
  901.         Table15 = {
  902.             name = "Uwu_Table15",
  903.             label = "Uwu Table 15",
  904.             TargetIcon = "fas fa-tablet",
  905.             TargetLabel = "Table",
  906.             Slots = 20,
  907.             Weight = 50000, -- 50 KG
  908.             coords = vector3(-591.19, -1080.21, 22.33),
  909.             radius = 1.20,
  910.             debug = false
  911.         },
  912.  
  913.         Table16 = {
  914.             name = "Uwu_Table16",
  915.             label = "Uwu Table 16",
  916.             TargetIcon = "fas fa-tablet",
  917.             TargetLabel = "Table",
  918.             Slots = 20,
  919.             Weight = 50000, -- 50 KG
  920.             coords = vector3(-594.04, -1076.76, 21.63),
  921.             radius = 0.35,
  922.             debug = false
  923.         },
  924.  
  925.         Table17 = {
  926.             name = "Uwu_Table17",
  927.             label = "Uwu Table 17",
  928.             TargetIcon = "fas fa-tablet",
  929.             TargetLabel = "Table",
  930.             Slots = 20,
  931.             Weight = 50000, -- 50 KG
  932.             coords = vector3(-593.46, -1076.44, 21.78),
  933.             radius = 0.35,
  934.             debug = false
  935.         },
  936.         Tray1 = {
  937.             name = "Uwu_Tray1",
  938.             label = "Tray 1",
  939.             TargetIcon = "fas fa-hand-holding",
  940.             TargetLabel = "Tray",
  941.             Slots = 6,
  942.             Weight = 5000, -- 50 KG
  943.             coords = vector3(-584.17, -1062.07, 22.4),
  944.             radius = 0.35,
  945.             debug = false
  946.         },
  947.         Tray2 = {
  948.             name = "Uwu_Tray2",
  949.             label = "Tray 2",
  950.             TargetIcon = "fas fa-hand-holding",
  951.             TargetLabel = "Tray",
  952.             Slots = 6,
  953.             Weight = 5000, -- 50 KG
  954.             coords = vector3(-584.04, -1059.31, 22.4),
  955.             radius = 0.35,
  956.             debug = false
  957.         },
  958.         Tray3 = {
  959.             name = "Uwu_Tray3",
  960.             label = "Tray 3",
  961.             TargetIcon = "fas fa-hand-holding",
  962.             TargetLabel = "Tray",
  963.             Slots = 6,
  964.             Weight = 5000, -- 50 KG
  965.             coords = vector3(-586.57, -1062.95, 22.4),
  966.             radius = 0.35,
  967.             debug = false
  968.         },
  969.     },
  970. }
  971.  
  972. --BLIPS
  973. Config.Blips = {
  974.     uwu = { -- do not use same value twice (will result in overwriting of blip)
  975.         BlipCoords = vec3(-580.9502, -1065.8682, 22.3473), -- Blip coords
  976.         Sprite = 489, -- Blip Icon
  977.         Display = 4, -- keep 4
  978.         Scale = 0.8, -- Size of blip
  979.         Colour = 8, -- colour
  980.         Name = "UWU CAFE" -- Blip name
  981.     },
  982. }
  983.  
  984. --Job BLIPS
  985. Config.JobBlips = {
  986.     PawnShop = { -- do not use same value twice (will result in overwriting of blip)
  987.         BlipCoords = vec3(331.0016, 362.2499, 106.6535), -- Blip coords
  988.         Sprite = 59, -- Blip Icon
  989.         Display = 4, -- keep 4
  990.         Scale = 0.8, -- Size of blip
  991.         Colour = 7, -- colour
  992.         Name = "UWU CAFE - Shop" -- Blip name
  993.     },
  994. }
  995.  
  996. --Shop
  997. Config.Shop = {
  998.     Header = "Uwu Cafe Shop",
  999.     Items = {
  1000.         { label = 'Dirty Tall Glass', item = 'glass_tall_dirty', description = "Buy Dirty Tall Glass for: $", price = 5, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/LigkwIc.png", metadata = {""} },
  1001.         { label = 'Butter', item = 'butter', description = "Buy Butter for: $", price = 2, MinAmount = 1, MaxAmount = 2, image = "https://imgur.com/YMqL3kF.png", metadata = {""}  },
  1002.         { label = 'Beans', item = 'beans', description = "Buy Beans for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/llgoPj3.png", metadata = {""}  },
  1003.         { label = 'Cocoa powder', item = 'cocoa_powder', description = "Buy Cocoa powder for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/ESoezwE.png", metadata = {""}  },
  1004.         { label = 'Dried boba tapioca pearls', item = 'dried_boba_tapioca_pearls', description = "Buy Dried boba tapioca pearls for: $", price = 5, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/II2rEg1.png", metadata = {""}  },
  1005.         { label = 'Egg', item = 'egg', description = "Buy Egg for: $", price = 8, MinAmount = 1, MaxAmount = 1, image = "https://imgur.com/H9kWuio.png", metadata = {""}  },
  1006.         { label = 'Flour', item = 'flour', description = "Buy Flour for: $", price = 8, MinAmount = 1, MaxAmount = 1, image = "https://imgur.com/xFqCA0p.png", metadata = {""}  },
  1007.         { label = 'Chicken', item = 'chicken', description = "Buy Chicken for: $", price = 8, MinAmount = 1, MaxAmount = 8, image = "https://imgur.com/H8ZFy8x.png", metadata = {""}  },
  1008.         { label = 'Chicken breast', item = 'chicken_breast', description = "Buy Chicken breast for: $", price = 4, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/t1Fhp1T.png", metadata = {""}  },
  1009.         { label = 'Chicken thighs', item = 'chicken_thighs', description = "Buy Chicken thighs for: $", price = 5, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/UmhjWfR.png", metadata = {""}  },
  1010.         { label = 'Jelly beans', item = 'jelly_beans', description = "Buy Jelly beans for: $", price = 1, MinAmount = 3, MaxAmount = 20, image = "https://imgur.com/kSJkyyf.png", metadata = {""}  },
  1011.         { label = 'Juice', item = 'juice', description = "Buy Juice for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/PuSRnCX.png", metadata = {""}  },
  1012.         { label = 'Lemon', item = 'lemon', description = "Buy Lemon for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/V35oDUQ.png", metadata = {""}  },
  1013.         { label = 'Matcha powder', item = 'matcha_powder', description = "Buy Matcha powder for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/fABA4D8.png", metadata = {""}  },
  1014.         { label = 'Milk', item = 'milk', description = "Buy Milk for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/WAoFgH9.png", metadata = {""}  },
  1015.         { label = 'Nuts', item = 'nuts', description = "Buy Nuts for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/ThloROa.png", metadata = {""}  },
  1016.         { label = 'Onion', item = 'onion', description = "Buy Onion for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/Fj35glm.png", metadata = {""}  },
  1017.         { label = 'Pullman bread', item = 'pullman_bread', description = "Buy Pullman bread for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/R5G2kuw.png", metadata = {""}  },
  1018.         { label = 'Rice flour', item = 'rice_flour', description = "Buy Rice flour for: $", price = 3, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/cn8Sy83.png", metadata = {""}  },
  1019.         { label = 'Rice', item = 'rice', description = "Buy Rice for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/COrVjt6.png", metadata = {""}  },
  1020.         { label = 'Sea moss', item = 'sea_moss', description = "Buy Sea moss for: $", price = 5, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/DyOKzgJ.png", metadata = {""}  },
  1021.         { label = 'Soy sauce', item = 'soy_sauce', description = "Buy Soy sauce for: $", price = 6, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/EBzLabc.png", metadata = {""}  },
  1022.         { label = 'Strawberry', item = 'strawberry', description = "Buy strawberry for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/FVvhO7a.png", metadata = {""}  },
  1023.         { label = 'Sugar', item = 'sugar', description = "Buy Sugar for: $", price = 1, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/X3JIJnw.png", metadata = {""}  },
  1024.         { label = 'Mystery Box', item = 'uwu_mysterybox', description = "Buy Mystery Box for: $", price = 10, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/Prp3Jao.png", metadata = {""}  },
  1025.         { label = 'Baking Powder', item = 'baking_powder', description = "Buy Baking Powder for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/xXzs0VZ.png", metadata = {""}  },
  1026.         { label = 'Virgine Olive Oil', item = 'virgin_olive_oil', description = "Buy Virgine Olive Oil for: $", price = 10, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/aTNzWY8.png", metadata = {""}  },
  1027.         { label = 'Noodles', item = 'noodles', description = "Buy Noodles for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/4m0p7Ud.png", metadata = {""}  },
  1028.         { label = 'Mint', item = 'mint', description = "Buy Mint for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/BgQ9yl8.png", metadata = {""}  },
  1029.         { label = 'Brewed Coffee', item = 'brewed_coffee', description = "Buy Brewed Coffee for: $", price = 5, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/9NpSn1d.png", metadata = {""}  },
  1030.         { label = 'Steak', item = 'steak', description = "Buy Steak for: $", price = 15, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/3uR5YSf.png", metadata = {""}  },
  1031.         { label = 'Brown dye', item = 'brown_dye', description = "Buy Brown dye for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/1QeJDke.png", metadata = {""}  },
  1032.         { label = 'Pink dye', item = 'pink_dye', description = "Buy Pink dye for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/YdKIyRU.png", metadata = {""}  },
  1033.         { label = 'Green dye', item = 'green_dye', description = "Buy Green dye for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/46A0JEE.png", metadata = {""}  },
  1034.         { label = 'Turquoise dye', item = 'turquoise_dye', description = "Buy Turquoise dye for: $", price = 2, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/323vTLA.png", metadata = {""}  },
  1035.         { label = 'Plate Dirty', item = 'plate_dirty', description = "Buy Plate Dirty for: $", price = 5, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/hxovZ27.png", metadata = {""}  },
  1036.         { label = 'Bar Bowl Dirty', item = 'bar_bowl_dirty', description = "Buy Bar Dirty Bowl for: $", price = 5, MinAmount = 1, MaxAmount = 20, image = "https://imgur.com/w8YpCbW.png", metadata = {""}  },
  1037.         { label = 'Cup Dirty', item = 'cup_dirty', description = "Buy Cup Dirty for: $", price = 8, MinAmount = 5, MaxAmount = 20, image = "https://imgur.com/r5SGdgW.png", metadata = {""}  },
  1038.     },
  1039.     Ped = {
  1040.         { model = "a_m_y_soucent_04", coords = vec4(331.0016, 362.2499, 105.6535, 357.9276), scenario = "WORLD_HUMAN_AA_COFFEE" },
  1041.     },
  1042. }
  1043.  
  1044. -- Consumables / Drinking / Eating  
  1045. Config.Consumables = {
  1046.     gingerkitty_cookie = { -- Item name
  1047.         Log = "He ate gingerkitty cookie",
  1048.         Remove = true, -- Remove item
  1049.         RemoveItem = "gingerkitty_cookie", -- Remove Item name
  1050.         RemoveItemCount = 1, -- Remove Item Count
  1051.         Add = false,
  1052.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1053.         AddItemCount = 1, -- Remove Item Count
  1054.         ProgressBar = "Eating...",
  1055.         duration = 12500,
  1056.         Effect = { status = "hunger", add = 100000 },
  1057.         animation = {
  1058.             emote = {
  1059.                 enabled = true,
  1060.                 anim = {
  1061.                     dict = 'mp_player_inteat@burger',
  1062.                     clip = 'mp_player_int_eat_burger'
  1063.                 },
  1064.                 prop = {
  1065.                     model = 'prop_cs_burger_01',
  1066.                     bone = 18905,
  1067.                     pos = vec3(0.13, 0.06, 0.02),
  1068.                     rot = vec3(-130.0, -7.0, 0.0)
  1069.                 },
  1070.             },
  1071.             scenario = {
  1072.                 enabled = false,
  1073.                 anim = {
  1074.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1075.                 },
  1076.             },
  1077.         }
  1078.     },
  1079.     kira_kira_currye = { -- Item name
  1080.         Log = "He ate kira kira currye",
  1081.         Remove = true, -- Remove item
  1082.         RemoveItem = "kira_kira_currye", -- Remove Item name
  1083.         RemoveItemCount = 1, -- Remove Item Count
  1084.         Add = true,
  1085.         AddItem = "plate_dirty", -- Remove Item name
  1086.         AddItemCount = 1, -- Remove Item Count
  1087.         ProgressBar = "Eating...",
  1088.         duration = 12500,
  1089.         Effect = { status = "hunger", add = 100000 },
  1090.         animation = {
  1091.             emote = {
  1092.                 enabled = true,
  1093.                 anim = {
  1094.                     dict = 'mp_player_inteat@burger',
  1095.                     clip = 'mp_player_int_eat_burger'
  1096.                 },
  1097.                 prop = {
  1098.                     model = 'prop_cs_burger_01',
  1099.                     bone = 18905,
  1100.                     pos = vec3(0.13, 0.06, 0.02),
  1101.                     rot = vec3(-130.0, -7.0, 0.0)
  1102.                 },
  1103.             },
  1104.             scenario = {
  1105.                 enabled = false,
  1106.                 anim = {
  1107.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1108.                 },
  1109.             },
  1110.         }
  1111.     },
  1112.     om_nom_omurice = { -- Item name
  1113.         Log = "He ate om nom omurice",
  1114.         Remove = true, -- Remove item
  1115.         RemoveItem = "om_nom_omurice", -- Remove Item name
  1116.         RemoveItemCount = 1, -- Remove Item Count
  1117.         Add = true,
  1118.         AddItem = "plate_dirty", -- Remove Item name
  1119.         AddItemCount = 1, -- Remove Item Count
  1120.         ProgressBar = "Eating...",
  1121.         duration = 12500,
  1122.         Effect = { status = "hunger", add = 100000 },
  1123.         animation = {
  1124.             emote = {
  1125.                 enabled = true,
  1126.                 anim = {
  1127.                     dict = 'mp_player_inteat@burger',
  1128.                     clip = 'mp_player_int_eat_burger'
  1129.                 },
  1130.                 prop = {
  1131.                     model = 'prop_cs_burger_01',
  1132.                     bone = 18905,
  1133.                     pos = vec3(0.13, 0.06, 0.02),
  1134.                     rot = vec3(-130.0, -7.0, 0.0)
  1135.                 },
  1136.             },
  1137.             scenario = {
  1138.                 enabled = false,
  1139.                 anim = {
  1140.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1141.                 },
  1142.             },
  1143.         }
  1144.     },
  1145.     dragos_fire_cupcake = { -- Item name
  1146.         Log = "He ate dragos fire cupcake",
  1147.         Remove = true, -- Remove item
  1148.         RemoveItem = "dragos_fire_cupcake", -- Remove Item name
  1149.         RemoveItemCount = 1, -- Remove Item Count
  1150.         Add = false,
  1151.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1152.         AddItemCount = 1, -- Remove Item Count
  1153.         ProgressBar = "Eating...",
  1154.         duration = 12500,
  1155.         Effect = { status = "hunger", add = 100000 },
  1156.         animation = {
  1157.             emote = {
  1158.                 enabled = true,
  1159.                 anim = {
  1160.                     dict = 'mp_player_inteat@burger',
  1161.                     clip = 'mp_player_int_eat_burger'
  1162.                 },
  1163.                 prop = {
  1164.                     model = 'prop_cs_burger_01',
  1165.                     bone = 18905,
  1166.                     pos = vec3(0.13, 0.06, 0.02),
  1167.                     rot = vec3(-130.0, -7.0, 0.0)
  1168.                 },
  1169.             },
  1170.             scenario = {
  1171.                 enabled = false,
  1172.                 anim = {
  1173.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1174.                 },
  1175.             },
  1176.         }
  1177.     },
  1178.     ballbarry_cupcake = { -- Item name
  1179.         Log = "He ate ballbarry cupcake",
  1180.         Remove = true, -- Remove item
  1181.         RemoveItem = "ballbarry_cupcake", -- Remove Item name
  1182.         RemoveItemCount = 1, -- Remove Item Count
  1183.         Add = false,
  1184.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1185.         AddItemCount = 1, -- Remove Item Count
  1186.         ProgressBar = "Eating...",
  1187.         duration = 12500,
  1188.         Effect = { status = "hunger", add = 100000 },
  1189.         animation = {
  1190.             emote = {
  1191.                 enabled = true,
  1192.                 anim = {
  1193.                     dict = 'mp_player_inteat@burger',
  1194.                     clip = 'mp_player_int_eat_burger'
  1195.                 },
  1196.                 prop = {
  1197.                     model = 'prop_cs_burger_01',
  1198.                     bone = 18905,
  1199.                     pos = vec3(0.13, 0.06, 0.02),
  1200.                     rot = vec3(-130.0, -7.0, 0.0)
  1201.                 },
  1202.             },
  1203.             scenario = {
  1204.                 enabled = false,
  1205.                 anim = {
  1206.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1207.                 },
  1208.             },
  1209.         }
  1210.     },
  1211.     purrfect_parfait = { -- Item name
  1212.         Log = "He ate purrfect parfait",
  1213.         Remove = true, -- Remove item
  1214.         RemoveItem = "purrfect_parfait", -- Remove Item name
  1215.         RemoveItemCount = 1, -- Remove Item Count
  1216.         Add = false,
  1217.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1218.         AddItemCount = 1, -- Remove Item Count
  1219.         ProgressBar = "Eating...",
  1220.         duration = 12500,
  1221.         Effect = { status = "hunger", add = 100000 },
  1222.         animation = {
  1223.             emote = {
  1224.                 enabled = true,
  1225.                 anim = {
  1226.                     dict = 'mp_player_inteat@burger',
  1227.                     clip = 'mp_player_int_eat_burger'
  1228.                 },
  1229.                 prop = {
  1230.                     model = 'prop_cs_burger_01',
  1231.                     bone = 18905,
  1232.                     pos = vec3(0.13, 0.06, 0.02),
  1233.                     rot = vec3(-130.0, -7.0, 0.0)
  1234.                 },
  1235.             },
  1236.             scenario = {
  1237.                 enabled = false,
  1238.                 anim = {
  1239.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1240.                 },
  1241.             },
  1242.         }
  1243.     },
  1244.     oxygen_cake = { -- Item name
  1245.         Log = "He ate oxygen cake",
  1246.         Remove = true, -- Remove item
  1247.         RemoveItem = "oxygen_cake", -- Remove Item name
  1248.         RemoveItemCount = 1, -- Remove Item Count
  1249.         Add = true,
  1250.         AddItem = "plate_dirty", -- Remove Item name
  1251.         AddItemCount = 1, -- Remove Item Count
  1252.         ProgressBar = "Eating...",
  1253.         duration = 12500,
  1254.         Effect = { status = "hunger", add = 100000 },
  1255.         animation = {
  1256.             emote = {
  1257.                 enabled = true,
  1258.                 anim = {
  1259.                     dict = 'mp_player_inteat@burger',
  1260.                     clip = 'mp_player_int_eat_burger'
  1261.                 },
  1262.                 prop = {
  1263.                     model = 'prop_cs_burger_01',
  1264.                     bone = 18905,
  1265.                     pos = vec3(0.13, 0.06, 0.02),
  1266.                     rot = vec3(-130.0, -7.0, 0.0)
  1267.                 },
  1268.             },
  1269.             scenario = {
  1270.                 enabled = false,
  1271.                 anim = {
  1272.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1273.                 },
  1274.             },
  1275.         }
  1276.     },
  1277.     meowchi_mochi_ice_cream = { -- Item name
  1278.         Log = "He ate meowchi mochi ice cream",
  1279.         Remove = true, -- Remove item
  1280.         RemoveItem = "meowchi_mochi_ice_cream", -- Remove Item name
  1281.         RemoveItemCount = 1, -- Remove Item Count
  1282.         Add = false,
  1283.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1284.         AddItemCount = 1, -- Remove Item Count
  1285.         ProgressBar = "Eating...",
  1286.         duration = 12500,
  1287.         Effect = { status = "hunger", add = 100000 },
  1288.         animation = {
  1289.             emote = {
  1290.                 enabled = true,
  1291.                 anim = {
  1292.                     dict = 'mp_player_inteat@burger',
  1293.                     clip = 'mp_player_int_eat_burger'
  1294.                 },
  1295.                 prop = {
  1296.                     model = 'prop_cs_burger_01',
  1297.                     bone = 18905,
  1298.                     pos = vec3(0.13, 0.06, 0.02),
  1299.                     rot = vec3(-130.0, -7.0, 0.0)
  1300.                 },
  1301.             },
  1302.             scenario = {
  1303.                 enabled = false,
  1304.                 anim = {
  1305.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1306.                 },
  1307.             },
  1308.         }
  1309.     },
  1310.     strawberry_shortcake = { -- Item name
  1311.         Log = "He ate strawberry shortcake",
  1312.         Remove = true, -- Remove item
  1313.         RemoveItem = "strawberry_shortcake", -- Remove Item name
  1314.         RemoveItemCount = 1, -- Remove Item Count
  1315.         Add = true,
  1316.         AddItem = "plate_dirty", -- Remove Item name
  1317.         AddItemCount = 1, -- Remove Item Count
  1318.         ProgressBar = "Eating...",
  1319.         duration = 12500,
  1320.         Effect = { status = "hunger", add = 100000 },
  1321.         animation = {
  1322.             emote = {
  1323.                 enabled = true,
  1324.                 anim = {
  1325.                     dict = 'mp_player_inteat@burger',
  1326.                     clip = 'mp_player_int_eat_burger'
  1327.                 },
  1328.                 prop = {
  1329.                     model = 'prop_cs_burger_01',
  1330.                     bone = 18905,
  1331.                     pos = vec3(0.13, 0.06, 0.02),
  1332.                     rot = vec3(-130.0, -7.0, 0.0)
  1333.                 },
  1334.             },
  1335.             scenario = {
  1336.                 enabled = false,
  1337.                 anim = {
  1338.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1339.                 },
  1340.             },
  1341.         }
  1342.     },
  1343.     awwdorable_valentines_chocolate = { -- Item name
  1344.         Log = "He ate awwdororable valentines chocolate",
  1345.         Remove = true, -- Remove item
  1346.         RemoveItem = "awwdorable_valentines_chocolate", -- Remove Item name
  1347.         RemoveItemCount = 1, -- Remove Item Count
  1348.         Add = false,
  1349.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1350.         AddItemCount = 1, -- Remove Item Count
  1351.         ProgressBar = "Eating...",
  1352.         duration = 12500,
  1353.         Effect = { status = "hunger", add = 100000 },
  1354.         animation = {
  1355.             emote = {
  1356.                 enabled = true,
  1357.                 anim = {
  1358.                     dict = 'mp_player_inteat@burger',
  1359.                     clip = 'mp_player_int_eat_burger'
  1360.                 },
  1361.                 prop = {
  1362.                     model = 'prop_cs_burger_01',
  1363.                     bone = 18905,
  1364.                     pos = vec3(0.13, 0.06, 0.02),
  1365.                     rot = vec3(-130.0, -7.0, 0.0)
  1366.                 },
  1367.             },
  1368.             scenario = {
  1369.                 enabled = false,
  1370.                 anim = {
  1371.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1372.                 },
  1373.             },
  1374.         }
  1375.     },
  1376.     warm_chicken_noodle = { -- Item name
  1377.         Log = "He ate warm chicken noodles",
  1378.         Remove = true, -- Remove item
  1379.         RemoveItem = "warm_chicken_noodle", -- Remove Item name
  1380.         RemoveItemCount = 1, -- Remove Item Count
  1381.         Add = true,
  1382.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1383.         AddItemCount = 1, -- Remove Item Count
  1384.         ProgressBar = "Eating...",
  1385.         duration = 12500,
  1386.         Effect = { status = "hunger", add = 100000 },
  1387.         animation = {
  1388.             emote = {
  1389.                 enabled = true,
  1390.                 anim = {
  1391.                     dict = 'mp_player_inteat@burger',
  1392.                     clip = 'mp_player_int_eat_burger'
  1393.                 },
  1394.                 prop = {
  1395.                     model = 'prop_cs_burger_01',
  1396.                     bone = 18905,
  1397.                     pos = vec3(0.13, 0.06, 0.02),
  1398.                     rot = vec3(-130.0, -7.0, 0.0)
  1399.                 },
  1400.             },
  1401.             scenario = {
  1402.                 enabled = false,
  1403.                 anim = {
  1404.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1405.                 },
  1406.             },
  1407.         }
  1408.     },
  1409.     rice_balls = { -- Item name
  1410.         Log = "He ate rice balls",
  1411.         Remove = true, -- Remove item
  1412.         RemoveItem = "rice_balls", -- Remove Item name
  1413.         RemoveItemCount = 1, -- Remove Item Count
  1414.         Add = false,
  1415.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1416.         AddItemCount = 1, -- Remove Item Count
  1417.         ProgressBar = "Eating...",
  1418.         duration = 12500,
  1419.         Effect = { status = "hunger", add = 100000 },
  1420.         animation = {
  1421.             emote = {
  1422.                 enabled = true,
  1423.                 anim = {
  1424.                     dict = 'mp_player_inteat@burger',
  1425.                     clip = 'mp_player_int_eat_burger'
  1426.                 },
  1427.                 prop = {
  1428.                     model = 'prop_cs_burger_01',
  1429.                     bone = 18905,
  1430.                     pos = vec3(0.13, 0.06, 0.02),
  1431.                     rot = vec3(-130.0, -7.0, 0.0)
  1432.                 },
  1433.             },
  1434.             scenario = {
  1435.                 enabled = false,
  1436.                 anim = {
  1437.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1438.                 },
  1439.             },
  1440.         }
  1441.     },
  1442.     doki_doki_pancakes = { -- Item name
  1443.         Log = "He ate doki doki pancakes",
  1444.         Remove = true, -- Remove item
  1445.         RemoveItem = "doki_doki_pancakes", -- Remove Item name
  1446.         RemoveItemCount = 1, -- Remove Item Count
  1447.         Add = false,
  1448.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1449.         AddItemCount = 1, -- Remove Item Count
  1450.         ProgressBar = "Eating...",
  1451.         duration = 12500,
  1452.         Effect = { status = "hunger", add = 100000 },
  1453.         animation = {
  1454.             emote = {
  1455.                 enabled = true,
  1456.                 anim = {
  1457.                     dict = 'mp_player_inteat@burger',
  1458.                     clip = 'mp_player_int_eat_burger'
  1459.                 },
  1460.                 prop = {
  1461.                     model = 'prop_cs_burger_01',
  1462.                     bone = 18905,
  1463.                     pos = vec3(0.13, 0.06, 0.02),
  1464.                     rot = vec3(-130.0, -7.0, 0.0)
  1465.                 },
  1466.             },
  1467.             scenario = {
  1468.                 enabled = false,
  1469.                 anim = {
  1470.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1471.                 },
  1472.             },
  1473.         }
  1474.     },
  1475.     hamburg_steak = { -- Item name
  1476.         Log = "He ate hamburg steak",
  1477.         Remove = true, -- Remove item
  1478.         RemoveItem = "hamburg_steak", -- Remove Item name
  1479.         RemoveItemCount = 1, -- Remove Item Count
  1480.         Add = false,
  1481.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1482.         AddItemCount = 1, -- Remove Item Count
  1483.         ProgressBar = "Eating...",
  1484.         duration = 12500,
  1485.         Effect = { status = "hunger", add = 100000 },
  1486.         animation = {
  1487.             emote = {
  1488.                 enabled = true,
  1489.                 anim = {
  1490.                     dict = 'mp_player_inteat@burger',
  1491.                     clip = 'mp_player_int_eat_burger'
  1492.                 },
  1493.                 prop = {
  1494.                     model = 'prop_cs_steak',
  1495.                     bone = 18905,
  1496.                     pos = vec3(0.16, 0.04, 0.04),
  1497.                     rot = vec3(-48.0, -40.0, 0.0)
  1498.                 },
  1499.             },
  1500.             scenario = {
  1501.                 enabled = false,
  1502.                 anim = {
  1503.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1504.                 },
  1505.             },
  1506.         }
  1507.     },
  1508.     sugoi_katsu_sando = { -- Item name
  1509.         Log = "He ate cat sugoi katsu sando",
  1510.         Remove = true, -- Remove item
  1511.         RemoveItem = "sugoi_katsu_sando", -- Remove Item name
  1512.         RemoveItemCount = 1, -- Remove Item Count
  1513.         Add = true,
  1514.         AddItem = "plate_dirty", -- Remove Item name
  1515.         AddItemCount = 1, -- Remove Item Count
  1516.         ProgressBar = "Eating...",
  1517.         duration = 12500,
  1518.         Effect = { status = "hunger", add = 100000 },
  1519.         animation = {
  1520.             emote = {
  1521.                 enabled = true,
  1522.                 anim = {
  1523.                     dict = 'mp_player_inteat@burger',
  1524.                     clip = 'mp_player_int_eat_burger'
  1525.                 },
  1526.                 prop = {
  1527.                     model = 'prop_cs_burger_01',
  1528.                     bone = 18905,
  1529.                     pos = vec3(0.13, 0.06, 0.02),
  1530.                     rot = vec3(-130.0, -7.0, 0.0)
  1531.                 },
  1532.             },
  1533.             scenario = {
  1534.                 enabled = false,
  1535.                 anim = {
  1536.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1537.                 },
  1538.             },
  1539.         }
  1540.     },
  1541.     cat_macaroon_pink = { -- Item name
  1542.         Log = "He ate cat macaroon pink",
  1543.         Remove = true, -- Remove item
  1544.         RemoveItem = "cat_macaroon_pink", -- Remove Item name
  1545.         RemoveItemCount = 1, -- Remove Item Count
  1546.         Add = false,
  1547.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1548.         AddItemCount = 1, -- Remove Item Count
  1549.         ProgressBar = "Eating...",
  1550.         duration = 12500,
  1551.         Effect = { status = "hunger", add = 100000 },
  1552.         animation = {
  1553.             emote = {
  1554.                 enabled = true,
  1555.                 anim = {
  1556.                     dict = 'mp_player_inteat@burger',
  1557.                     clip = 'mp_player_int_eat_burger'
  1558.                 },
  1559.                 prop = {
  1560.                     model = 'prop_cs_burger_01',
  1561.                     bone = 18905,
  1562.                     pos = vec3(0.13, 0.06, 0.02),
  1563.                     rot = vec3(-130.0, -7.0, 0.0)
  1564.                 },
  1565.             },
  1566.             scenario = {
  1567.                 enabled = false,
  1568.                 anim = {
  1569.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1570.                 },
  1571.             },
  1572.         }
  1573.     },
  1574.     cat_macaroon_green = { -- Item name
  1575.         Log = "He ate cat macaroon green",
  1576.         Remove = true, -- Remove item
  1577.         RemoveItem = "cat_macaroon_green", -- Remove Item name
  1578.         RemoveItemCount = 1, -- Remove Item Count
  1579.         Add = false,
  1580.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1581.         AddItemCount = 1, -- Remove Item Count
  1582.         ProgressBar = "Eating...",
  1583.         duration = 12500,
  1584.         Effect = { status = "hunger", add = 100000 },
  1585.         animation = {
  1586.             emote = {
  1587.                 enabled = true,
  1588.                 anim = {
  1589.                     dict = 'mp_player_inteat@burger',
  1590.                     clip = 'mp_player_int_eat_burger'
  1591.                 },
  1592.                 prop = {
  1593.                     model = 'prop_cs_burger_01',
  1594.                     bone = 18905,
  1595.                     pos = vec3(0.13, 0.06, 0.02),
  1596.                     rot = vec3(-130.0, -7.0, 0.0)
  1597.                 },
  1598.             },
  1599.             scenario = {
  1600.                 enabled = false,
  1601.                 anim = {
  1602.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1603.                 },
  1604.             },
  1605.         }
  1606.     },
  1607.     cat_macaroon_turquoise = { -- Item name
  1608.         Log = "He ate cat macaroon turquoise",
  1609.         Remove = true, -- Remove item
  1610.         RemoveItem = "cat_macaroon_turquoise", -- Remove Item name
  1611.         RemoveItemCount = 1, -- Remove Item Count
  1612.         Add = false,
  1613.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1614.         AddItemCount = 1, -- Remove Item Count
  1615.         ProgressBar = "Eating...",
  1616.         duration = 12500,
  1617.         Effect = { status = "hunger", add = 100000 },
  1618.         animation = {
  1619.             emote = {
  1620.                 enabled = true,
  1621.                 anim = {
  1622.                     dict = 'mp_player_inteat@burger',
  1623.                     clip = 'mp_player_int_eat_burger'
  1624.                 },
  1625.                 prop = {
  1626.                     model = 'prop_cs_burger_01',
  1627.                     bone = 18905,
  1628.                     pos = vec3(0.13, 0.06, 0.02),
  1629.                     rot = vec3(-130.0, -7.0, 0.0)
  1630.                 },
  1631.             },
  1632.             scenario = {
  1633.                 enabled = false,
  1634.                 anim = {
  1635.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1636.                 },
  1637.             },
  1638.         }
  1639.     },
  1640.     cat_macaroon_brown = { -- Item name
  1641.         Log = "He ate cat macaroon brown",
  1642.         Remove = true, -- Remove item
  1643.         RemoveItem = "cat_macaroon_brown", -- Remove Item name
  1644.         RemoveItemCount = 1, -- Remove Item Count
  1645.         Add = false,
  1646.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1647.         AddItemCount = 1, -- Remove Item Count
  1648.         ProgressBar = "Eating...",
  1649.         duration = 12500,
  1650.         Effect = { status = "hunger", add = 100000 },
  1651.         animation = {
  1652.             emote = {
  1653.                 enabled = true,
  1654.                 anim = {
  1655.                     dict = 'mp_player_inteat@burger',
  1656.                     clip = 'mp_player_int_eat_burger'
  1657.                 },
  1658.                 prop = {
  1659.                     model = 'prop_cs_burger_01',
  1660.                     bone = 18905,
  1661.                     pos = vec3(0.13, 0.06, 0.02),
  1662.                     rot = vec3(-130.0, -7.0, 0.0)
  1663.                 },
  1664.             },
  1665.             scenario = {
  1666.                 enabled = false,
  1667.                 anim = {
  1668.                     scenario = "WORLD_HUMAN_SMOKING_POT"
  1669.                 },
  1670.             },
  1671.         }
  1672.     },
  1673.     sweet_herbal_tea = { -- Item name
  1674.         Log = "He drink sweet herbal tea",
  1675.         Remove = true, -- Remove item
  1676.         RemoveItem = "sweet_herbal_tea", -- Remove Item name
  1677.         RemoveItemCount = 1, -- Remove Item Count
  1678.         Add = true,
  1679.         AddItem = "cup_dirty", -- Remove Item name
  1680.         AddItemCount = 1, -- Remove Item Count
  1681.         ProgressBar = "Drinking...",
  1682.         duration = 12500,
  1683.         Effect = { status = "thirst", add = 100000 },
  1684.         animation = {
  1685.             emote = {
  1686.                 enabled = true,
  1687.                 anim = {
  1688.                     dict = 'amb@world_human_drinking@coffee@male@idle_a',
  1689.                     clip = 'idle_c'
  1690.                 },
  1691.                 prop = {
  1692.                     model = 'v_ind_cfbottle',
  1693.                     bone = 57005,
  1694.                     pos = vec3(0.15, 0.02, -0.03),
  1695.                     rot = vec3(-70.0, 30.0, 10.0)
  1696.                 },
  1697.             },
  1698.             scenario = {
  1699.                 enabled = false,
  1700.                 anim = {
  1701.                     scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
  1702.                 },
  1703.             },
  1704.         }
  1705.     },
  1706.     booba_milk_tea_2 = { -- Item name
  1707.         Log = "He drink booba milk tea",
  1708.         Remove = true, -- Remove item
  1709.         RemoveItem = "booba_milk_tea_2", -- Remove Item name
  1710.         RemoveItemCount = 1, -- Remove Item Count
  1711.         Add = false,
  1712.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1713.         AddItemCount = 1, -- Remove Item Count
  1714.         ProgressBar = "Drinking...",
  1715.         duration = 12500,
  1716.         Effect = { status = "thirst", add = 100000 },
  1717.         animation = {
  1718.             emote = {
  1719.                 enabled = true,
  1720.                 anim = {
  1721.                     dict = 'amb@world_human_drinking@coffee@male@idle_a',
  1722.                     clip = 'idle_c'
  1723.                 },
  1724.                 prop = {
  1725.                     model = 'v_ind_cfbottle',
  1726.                     bone = 57005,
  1727.                     pos = vec3(0.15, 0.02, -0.03),
  1728.                     rot = vec3(-70.0, 30.0, 10.0)
  1729.                 },
  1730.             },
  1731.             scenario = {
  1732.                 enabled = false,
  1733.                 anim = {
  1734.                     scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
  1735.                 },
  1736.             },
  1737.         }
  1738.     },
  1739.     lovely_hot_chocolate = { -- Item name
  1740.         Log = "He drink lovely hot chocolate",
  1741.         Remove = true, -- Remove item
  1742.         RemoveItem = "lovely_hot_chocolate", -- Remove Item name
  1743.         RemoveItemCount = 1, -- Remove Item Count
  1744.         Add = true,
  1745.         AddItem = "cup_dirty", -- Remove Item name
  1746.         AddItemCount = 1, -- Remove Item Count
  1747.         ProgressBar = "Drinking...",
  1748.         duration = 12500,
  1749.         Effect = { status = "thirst", add = 100000 },
  1750.         animation = {
  1751.             emote = {
  1752.                 enabled = true,
  1753.                 anim = {
  1754.                     dict = 'amb@world_human_drinking@coffee@male@idle_a',
  1755.                     clip = 'idle_c'
  1756.                 },
  1757.                 prop = {
  1758.                     model = 'p_amb_coffeecup_01',
  1759.                     bone = 57005,
  1760.                     pos = vec3(0.15, 0.02, -0.03),
  1761.                     rot = vec3(-70.0, 30.0, 10.0)
  1762.                 },
  1763.             },
  1764.             scenario = {
  1765.                 enabled = false,
  1766.                 anim = {
  1767.                     scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
  1768.                 },
  1769.             },
  1770.         }
  1771.     },
  1772.     hot_chocolate = { -- Item name
  1773.         Log = "He drink hot chocolate",
  1774.         Remove = true, -- Remove item
  1775.         RemoveItem = "hot_chocolate", -- Remove Item name
  1776.         RemoveItemCount = 1, -- Remove Item Count
  1777.         Add = true,
  1778.         AddItem = "cup_dirty", -- Remove Item name
  1779.         AddItemCount = 1, -- Remove Item Count
  1780.         ProgressBar = "Drinking...",
  1781.         duration = 12500,
  1782.         Effect = { status = "thirst", add = 100000 },
  1783.         animation = {
  1784.             emote = {
  1785.                 enabled = true,
  1786.                 anim = {
  1787.                     dict = 'amb@world_human_drinking@coffee@male@idle_a',
  1788.                     clip = 'idle_c'
  1789.                 },
  1790.                 prop = {
  1791.                     model = 'p_amb_coffeecup_01',
  1792.                     bone = 57005,
  1793.                     pos = vec3(0.15, 0.02, -0.03),
  1794.                     rot = vec3(-70.0, 30.0, 10.0)
  1795.                 },
  1796.             },
  1797.             scenario = {
  1798.                 enabled = false,
  1799.                 anim = {
  1800.                     scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
  1801.                 },
  1802.             },
  1803.         }
  1804.     },
  1805.     matcha_coffee = { -- Item name
  1806.         Log = "He drink matcha coffee",
  1807.         Remove = true, -- Remove item
  1808.         RemoveItem = "matcha_coffee", -- Remove Item name
  1809.         RemoveItemCount = 1, -- Remove Item Count
  1810.         Add = false,
  1811.         AddItem = "bar_bowl_dirty", -- Remove Item name
  1812.         AddItemCount = 1, -- Remove Item Count
  1813.         ProgressBar = "Drinking...",
  1814.         duration = 12500,
  1815.         Effect = { status = "thirst", add = 100000 },
  1816.         animation = {
  1817.             emote = {
  1818.                 enabled = true,
  1819.                 anim = {
  1820.                     dict = 'amb@world_human_drinking@coffee@male@idle_a',
  1821.                     clip = 'idle_c'
  1822.                 },
  1823.                 prop = {
  1824.                     model = 'p_amb_coffeecup_01',
  1825.                     bone = 57005,
  1826.                     pos = vec3(0.15, 0.02, -0.03),
  1827.                     rot = vec3(-70.0, 30.0, 10.0)
  1828.                 },
  1829.             },
  1830.             scenario = {
  1831.                 enabled = false,
  1832.                 anim = {
  1833.                     scenario = "WORLD_HUMAN_SEAT_LEDGE_EATING"
  1834.                 },
  1835.             },
  1836.         }
  1837.     },
  1838. }
  1839.  
  1840. Config.ChairsDebug = false
  1841. Config.Chairs = {
  1842.     --TABLE 1
  1843.     {
  1844.         coords = vector3(-572.9562, -1058.8456, 22.1009), offsetZ = -0.10, heading = 175.8815, radius = 0.8, distance = 2.0,
  1845.         LeaveCoords = vector4(-575.0701, -1058.9763, 21.0442, 272.4649)
  1846.     },
  1847.     {
  1848.         coords = vector3(-573.9679, -1058.8065, 22.1009), offsetZ = -0.10, heading = 186.4195, radius = 0.5, distance = 1.7,
  1849.         LeaveCoords = vector4(-575.0701, -1058.9763, 21.0442, 272.4649)
  1850.     },
  1851.     {
  1852.         coords = vector3(-572.9498, -1060.7108, 22.1009), offsetZ = -0.10, heading = 356.4987, radius = 0.8, distance = 2.0,
  1853.         LeaveCoords = vector4(-575.2313, -1060.7292, 21.0442, 273.1050)
  1854.     },
  1855.     {
  1856.         coords = vector3(-574.0305, -1060.6798, 22.1009), offsetZ = -0.10, heading = 5.5353, radius = 0.5, distance = 1.7,
  1857.         LeaveCoords = vector4(-575.2313, -1060.7292, 21.0442, 273.1050)
  1858.     },
  1859.     --TABLE 2
  1860.     {
  1861.         coords = vector3(-573.0892, -1062.4624, 22.1009), offsetZ = -0.10, heading = 177.2360, radius = 0.8, distance = 2.0,
  1862.         LeaveCoords = vector4(-575.0366, -1062.4911, 21.0442, 263.3249)
  1863.     },
  1864.     {
  1865.         coords = vector3(-573.9291, -1062.4513, 22.1009), offsetZ = -0.10, heading = 184.3847, radius = 0.5, distance = 1.7,
  1866.         LeaveCoords = vector4(-575.0366, -1062.4911, 21.0442, 263.3249)
  1867.     },
  1868.     {
  1869.         coords = vector3(-572.9266, -1064.3613, 22.1009), offsetZ = -0.10, heading = 5.3980, radius = 0.5, distance = 2.0,
  1870.         LeaveCoords = vector4(-575.1795, -1064.3451, 21.0442, 266.3918)
  1871.     },
  1872.     {
  1873.         coords = vector3(-573.8583, -1064.3676, 22.1009), offsetZ = -0.10, heading = 354.5259, radius = 0.5, distance = 1.7,
  1874.         LeaveCoords = vector4(-575.1795, -1064.3451, 21.0442, 266.3918)
  1875.     },
  1876.     --TABLE 3
  1877.     {
  1878.         coords = vector3(-573.0712, -1066.1083, 22.1009), offsetZ = -0.10, heading = 176.2702, radius = 0.5, distance = 2.0,
  1879.         LeaveCoords = vector4(-575.0702, -1066.1176, 21.0442, 263.9685)
  1880.     },
  1881.     {
  1882.         coords = vector3(-573.9131, -1066.1093, 22.1009), offsetZ = -0.10, heading = 178.4982, radius = 0.5, distance = 1.7,
  1883.         LeaveCoords = vector4(-575.0702, -1066.1176, 21.0442, 263.9685)
  1884.     },
  1885.     {
  1886.         coords = vector3(-572.9656, -1068.0251, 22.1009), offsetZ = -0.10, heading = 356.2012, radius = 0.5, distance = 2.0,
  1887.         LeaveCoords = vector4(-575.0652, -1068.0758, 21.0442, 279.8886)
  1888.     },
  1889.     {
  1890.         coords = vector3(-573.7507, -1068.0251, 22.1009), offsetZ = -0.10, heading = 8.6028, radius = 0.5, distance = 1.7,
  1891.         LeaveCoords = vector4(-575.0652, -1068.0758, 21.0442, 279.8886)
  1892.     },
  1893.     --CHAIR 1
  1894.     {
  1895.         coords = vector3(-576.9078, -1050.9244, 22.0023), offsetZ = -0.10, heading = 118.2189, radius = 0.5, distance = 1.7,
  1896.         LeaveCoords = vector4(-577.4818, -1051.1685, 21.0473, 108.4360)
  1897.     },
  1898.     {
  1899.         coords = vector3(-577.5104, -1052.5254, 22.0023), offsetZ = -0.10, heading = 34.1275, radius = 0.5, distance = 1.7,
  1900.         LeaveCoords = vector4(-578.0346, -1052.1064, 21.0473, 36.8572)
  1901.     },
  1902.     {
  1903.         coords = vector3(-579.7154, -1052.4957, 22.0023), offsetZ = -0.10, heading = 336.4822, radius = 0.5, distance = 1.7,
  1904.         LeaveCoords = vector4(-579.3543, -1051.9960, 21.0473, 359.9889)
  1905.     },
  1906.     {
  1907.         coords = vector3(-580.8413, -1051.2714, 22.0023), offsetZ = -0.10, heading = 287.9801, radius = 0.5, distance = 1.7,
  1908.         LeaveCoords = vector4(-580.2059, -1051.1025, 21.0473, 283.2544)
  1909.     },
  1910.     --KOLO
  1911.     {
  1912.         coords = vector3(-580.1898, -1062.1125, 21.9400), offsetZ = -0.10, heading = 28.1975, radius = 0.5, distance = 1.7,
  1913.         LeaveCoords = vector4(-580.3461, -1061.8046, 21.0465, 20.6683)
  1914.     },
  1915.     {
  1916.         coords = vector3(-580.7620, -1062.5127, 21.9400), offsetZ = -0.10, heading = 46.8980, radius = 0.5, distance = 1.7,
  1917.         LeaveCoords = vector4(-581.0005, -1062.2947, 21.0465, 47.6675)
  1918.     },
  1919.     {
  1920.         coords = vector3(-579.5212, -1062.0239, 21.9400), offsetZ = -0.10, heading = 350.6352, radius = 0.5, distance = 1.7,
  1921.         LeaveCoords = vector4(-579.4653, -1061.7098, 21.0465, 345.0456)
  1922.     },
  1923.     {
  1924.         coords = vector3(-578.7706, -1062.3292, 21.9400), offsetZ = -0.10, heading = 329.5334, radius = 0.5, distance = 1.7,
  1925.         LeaveCoords = vector4(-578.5662, -1061.9424, 21.0465, 335.2235)
  1926.     },
  1927.     {
  1928.         coords = vector3(-578.3378, -1062.9244, 21.9400), offsetZ = -0.10, heading = 292.5714, radius = 0.5, distance = 1.7,
  1929.         LeaveCoords = vector4(-577.8839, -1062.6056, 21.0465, 282.7989)
  1930.     },
  1931.     {
  1932.         coords = vector3(-578.2416, -1063.5408, 21.9400), offsetZ = -0.10, heading = 262.9378, radius = 0.5, distance = 1.7,
  1933.         LeaveCoords = vector4(-577.8278, -1063.6219, 21.0465, 262.6644)
  1934.     },
  1935.     {
  1936.         coords = vector3(-578.5033, -1064.2761, 21.9400), offsetZ = -0.10, heading = 229.8175, radius = 0.5, distance = 1.7,
  1937.         LeaveCoords = vector4(-578.2021, -1064.4210, 21.0465, 247.0550)
  1938.     },
  1939.     {
  1940.         coords = vector3(-579.3058, -1064.8365, 21.9400), offsetZ = -0.10, heading = 203.1745, radius = 0.5, distance = 1.7,
  1941.         LeaveCoords = vector4(-579.2278, -1065.1390, 21.0465, 191.9849)
  1942.     },
  1943.     {
  1944.         coords = vector3(-580.1214, -1064.8102, 21.9400), offsetZ = -0.10, heading = 161.4964, radius = 0.5, distance = 1.7,
  1945.         LeaveCoords = vector4(-580.2249, -1065.1128, 21.0465, 160.4243)
  1946.     },
  1947.     {
  1948.         coords = vector3(-580.8416, -1064.2723, 21.9400), offsetZ = -0.10, heading = 119.6424, radius = 0.5, distance = 1.7,
  1949.         LeaveCoords = vector4(-581.1003, -1064.4791, 21.0465, 134.7384)
  1950.     },
  1951.     {
  1952.         coords = vector3(-581.1042, -1063.4369, 21.9400), offsetZ = -0.10, heading = 87.2536, radius = 0.5, distance = 1.7,
  1953.         LeaveCoords = vector4(-581.4283, -1063.4341, 21.0465, 91.5554)
  1954.     },
  1955.     --SOFA 1
  1956.     {
  1957.         coords = vector3(-573.5166, -1052.0762, 26.1836), offsetZ = -0.10, heading = 267.7054, radius = 0.5, distance = 1.7,
  1958.         LeaveCoords = vector4(-573.0812, -1052.0747, 25.2141, 270.1332)
  1959.     },
  1960.     {
  1961.         coords = vector3(-573.5984, -1052.9655, 26.1836), offsetZ = -0.10, heading = 277.2194, radius = 0.5, distance = 1.7,
  1962.         LeaveCoords = vector4(-573.0812, -1052.8793, 25.2141, 275.0467)
  1963.     },
  1964.     {
  1965.         coords = vector3(-573.6161, -1053.6951, 26.1836), offsetZ = -0.10, heading = 277.9612, radius = 0.5, distance = 1.7,
  1966.         LeaveCoords = vector4(-573.0785, -1053.6414, 25.2141, 275.8367)
  1967.     },
  1968.     --SOFA 2
  1969.     {
  1970.         coords = vector3(-572.5027, -1069.1954, 26.1836), offsetZ = -0.10, heading = 10.2079, radius = 0.5, distance = 1.7,
  1971.         LeaveCoords = vector4(-572.5611, -1068.7144, 25.2141, 23.0572)
  1972.     },
  1973.     {
  1974.         coords = vector3(-570.9792, -1069.2565, 26.1836), offsetZ = -0.10, heading = 1.3958, radius = 0.5, distance = 1.7,
  1975.         LeaveCoords = vector4(-570.9197, -1068.7147, 25.2141, 8.7731)
  1976.     },
  1977.     {
  1978.         coords = vector3(-569.8362, -1068.2833, 26.1836), offsetZ = -0.10, heading = 100.6467, radius = 0.5, distance = 1.7,
  1979.         LeaveCoords = vector4(-570.4001, -1068.0865, 25.2141, 86.2488)
  1980.     },
  1981.     {
  1982.         coords = vector3(-569.8613, -1066.6639, 26.1836), offsetZ = -0.10, heading = 96.8839, radius = 0.5, distance = 1.7,
  1983.         LeaveCoords = vector4(-570.3916, -1066.6631, 25.2141, 94.0108)
  1984.     },
  1985.     --SOFA 3
  1986.     {
  1987.         coords = vector3(-577.1812, -1058.0598, 26.1836), offsetZ = -0.10, heading = 183.5157, radius = 0.5, distance = 1.7,
  1988.         LeaveCoords = vector4(-577.1871, -1058.5391, 25.2141, 182.9106)
  1989.     },
  1990.     {
  1991.         coords = vector3(-577.9976, -1058.0470, 26.1836), offsetZ = -0.10, heading = 180.7132, radius = 0.5, distance = 1.7,
  1992.         LeaveCoords = vector4(-577.7840, -1058.5404, 25.2141, 173.9615)
  1993.     },
  1994.     {
  1995.         coords = vector3(-578.7830, -1058.0217, 26.1836), offsetZ = -0.10, heading = 187.0402, radius = 0.5, distance = 1.7,
  1996.         LeaveCoords = vector4(-578.7288, -1058.5397, 25.2141, 184.3329)
  1997.     },
  1998.     --SOFA 4
  1999.     {
  2000.         coords = vector3(-589.7712, -1049.0630, 21.9830), offsetZ = -0.10, heading = 183.2213, radius = 0.5, distance = 1.7,
  2001.         LeaveCoords = vector4(-589.7332, -1049.7123, 21.1442, 181.0418)
  2002.     },
  2003.     {
  2004.         coords = vector3(-590.5945, -1049.0754, 21.9673), offsetZ = -0.10, heading = 188.0585, radius = 0.5, distance = 1.7,
  2005.         LeaveCoords = vector4(-590.6094, -1049.7126, 21.1442, 177.6097)
  2006.     },
  2007.     {
  2008.         coords = vector3(-591.2742, -1049.0862, 21.9513), offsetZ = -0.10, heading = 189.3418, radius = 0.5, distance = 1.7,
  2009.         LeaveCoords = vector4(-591.3625, -1049.7102, 21.1442, 174.1082)
  2010.     },
  2011.     --TABLE 4
  2012.     {
  2013.         coords = vector3(-586.2788, -1067.6814, 22.2141), offsetZ = -0.10, heading = 100.8177, radius = 0.5, distance = 1.7,
  2014.         LeaveCoords = vector4(-585.8483, -1067.7372, 21.1442, 89.3140)
  2015.     },
  2016.     {
  2017.         coords = vector3(-586.2598, -1066.6761, 22.2141), offsetZ = -0.10, heading = 90.6263, radius = 0.5, distance = 1.7,
  2018.         LeaveCoords = vector4(-585.7845, -1066.6095, 21.1442, 90.2129)
  2019.     },
  2020.     {
  2021.         coords = vector3(-586.2632, -1065.6392, 22.2141), offsetZ = -0.10, heading = 86.9081, radius = 0.5, distance = 1.7,
  2022.         LeaveCoords = vector4(-585.7640, -1065.6335, 21.1442, 95.4810)
  2023.     },
  2024.     {
  2025.         coords = vector3(-586.2688, -1064.6926, 22.2141), offsetZ = -0.10, heading = 91.2326, radius = 0.5, distance = 1.7,
  2026.         LeaveCoords = vector4(-585.7527, -1064.6591, 21.1442, 89.8206)
  2027.     },
  2028.     --BENCH 1
  2029.     {
  2030.         coords = vector3(-579.3099, -1075.7548, 21.8979), offsetZ = -0.10, heading = 92.8444, radius = 0.5, distance = 1.7,
  2031.         LeaveCoords = vector4(-579.7678, -1075.8286, 21.1297, 90.0015)
  2032.     },
  2033.     {
  2034.         coords = vector3(-579.2702, -1077.0818, 21.8979), offsetZ = -0.10, heading = 100.1041, radius = 0.5, distance = 1.7,
  2035.         LeaveCoords = vector4(-579.7706, -1077.1023, 21.1206, 92.2882)
  2036.     },
  2037.     --BENCH 2
  2038.     {
  2039.         coords = vector3(-582.7400, -1075.6958, 21.8979), offsetZ = -0.10, heading = 265.4174, radius = 0.5, distance = 1.7,
  2040.         LeaveCoords = vector4(-582.1862, -1075.8342, 21.1244, 272.9906)
  2041.     },
  2042.     {
  2043.         coords = vector3(-582.7840, -1077.1689, 21.8979), offsetZ = -0.10, heading = 268.2014, radius = 0.5, distance = 1.7,
  2044.         LeaveCoords = vector4(-582.1810, -1077.1821, 21.1278, 272.0880)
  2045.     },
  2046.     --BENCH 3
  2047.     {
  2048.         coords = vector3(-579.2113, -1081.3999, 21.8979), offsetZ = -0.10, heading = 89.0855, radius = 0.5, distance = 1.7,
  2049.         LeaveCoords = vector4(-579.7753, -1081.4353, 21.1244, 86.4701)
  2050.     },
  2051.     {
  2052.         coords = vector3(-579.2404, -1082.8878, 21.8979), offsetZ = -0.10, heading = 88.2679, radius = 0.5, distance = 1.7,
  2053.         LeaveCoords = vector4(-579.7745, -1082.8654, 21.1244, 84.5229)
  2054.     },
  2055.     --BENCH 4
  2056.     {
  2057.         coords = vector3(-582.7099, -1081.4022, 21.8979), offsetZ = -0.10, heading = 276.7716, radius = 0.5, distance = 1.7,
  2058.         LeaveCoords = vector4(-582.1857, -1081.3337, 21.1244, 267.7541)
  2059.     },
  2060.     {
  2061.         coords = vector3(-582.7518, -1082.8485, 21.8979), offsetZ = -0.10, heading = 273.3067, radius = 0.5, distance = 1.7,
  2062.         LeaveCoords = vector4(-582.1866, -1082.8582, 21.1244, 267.9531)
  2063.     },
  2064.     --TABLE 5
  2065.     {
  2066.         coords = vector3(-587.06, -1080.58, 21.9220), offsetZ = -0.10, heading = 214.3157, radius = 0.5, distance = 1.7,
  2067.         LeaveCoords = vector4(-586.7689, -1080.0925, 21.1297, 176.5098)
  2068.     },
  2069.     {
  2070.         coords = vector3(-585.47, -1080.8, 21.9220), offsetZ = -0.10, heading = 114.6497, radius = 0.5, distance = 1.7,
  2071.         LeaveCoords = vector4(-585.0361, -1081.1782, 21.1297, 116.6434)
  2072.     },
  2073.     {
  2074.         coords = vector3(-585.51, -1082.5, 21.9220), offsetZ = -0.10, heading = 42.3983, radius = 0.5, distance = 1.7,
  2075.         LeaveCoords = vector4(-585.8930, -1083.0211, 21.1297, 40.1283)
  2076.     },
  2077.     {
  2078.         coords = vector3(-587.6703, -1082.4713, 21.9220), offsetZ = -0.10, heading = 313.3883, radius = 0.5, distance = 1.7,
  2079.         LeaveCoords = vector4(-588.0133, -1082.1542, 21.1297, 293.2788)
  2080.     },
  2081.     --TABLE 6
  2082.     {
  2083.         coords = vector3(-587.67, -1075.87, 21.9220), offsetZ = -0.10, heading = 264.0885, radius = 0.5, distance = 1.7,
  2084.         LeaveCoords = vector4(-587.4899, -1075.3021, 21.1297, 260.2307)
  2085.     },
  2086.     {
  2087.         coords = vector3(-586.12, -1074.83, 21.9220), offsetZ = -0.10, heading = 175.5514, radius = 0.5, distance = 1.7,
  2088.         LeaveCoords = vector4(-585.5186, -1074.7286, 21.1297, 168.2569)
  2089.     },
  2090.     {
  2091.         coords = vector3(-585.05, -1076.18, 21.9220), offsetZ = -0.10, heading = 89.7072, radius = 0.5, distance = 1.7,
  2092.         LeaveCoords = vector4(-585.0471, -1076.7749, 21.1297, 86.4471)
  2093.     },
  2094.     {
  2095.         coords = vector3(-586.38, -1077.31, 21.9220), offsetZ = -0.10, heading = 2.1660, radius = 0.5, distance = 1.7,
  2096.         LeaveCoords = vector4(-586.9310, -1077.2749, 21.1297, 338.7051)
  2097.     },
  2098.     --TABLE 7
  2099.     {
  2100.         coords = vector3(-592.16, -1081.02, 21.9220), offsetZ = -0.10, heading = 301.8429, radius = 0.5, distance = 1.7,
  2101.         LeaveCoords = vector4(-592.5508, -1080.5975, 21.1297, 279.9665)
  2102.     },
  2103.     {
  2104.         coords = vector3(-591.89, -1079.08, 21.9220), offsetZ = -0.10, heading = 214.3831, radius = 0.5, distance = 1.7,
  2105.         LeaveCoords = vector4(-591.4936, -1078.6957, 21.1297, 201.7770)
  2106.     },
  2107.     {
  2108.         coords = vector3(-590.16, -1079.61, 21.9220), offsetZ = -0.10, heading = 129.3428, radius = 0.5, distance = 1.7,
  2109.         LeaveCoords = vector4(-589.8172, -1080.0602, 21.1297, 111.3758)
  2110.     },
  2111.     {
  2112.         coords = vector3(-590.48, -1081.3, 21.9220), offsetZ = -0.10, heading = 37.6883, radius = 0.5, distance = 1.7,
  2113.         LeaveCoords = vector4(-590.9778, -1081.5203, 21.1297, 15.5231)
  2114.     },
  2115.     --CHAIR 1
  2116.     {
  2117.         coords = vector3(-578.2318, -1067.6531, 26.2150), offsetZ = -0.10, heading = 359.0290, radius = 0.5, distance = 1.7,
  2118.         LeaveCoords = vector4(-577.5839, -1067.5729, 25.4141, 358.2033)
  2119.     },
  2120.     {
  2121.         coords = vector3(-577.1417, -1065.2870, 26.2150), offsetZ = -0.10, heading = 168.2997, radius = 0.5, distance = 1.7,
  2122.         LeaveCoords = vector4(-577.8129, -1064.9791, 25.4141, 179.6456)
  2123.     },
  2124.     {
  2125.         coords = vector3(-578.8456, -1065.3474, 26.2150), offsetZ = -0.10, heading = 194.2722, radius = 0.5, distance = 1.7,
  2126.         LeaveCoords = vector4(-579.5594, -1065.4858, 25.4141, 185.6743)
  2127.     },
  2128.     --CHAIR 2
  2129.     {
  2130.         coords = vector3(-578.9146, -1061.2754, 26.2150), offsetZ = -0.10, heading = 261.4271, radius = 0.5, distance = 1.7,
  2131.         LeaveCoords = vector4(-578.9777, -1062.0709, 25.4141, 281.1406)
  2132.     },
  2133.     {
  2134.         coords = vector3(-576.9505, -1062.4664, 26.2150), offsetZ = -0.10, heading = 357.4593, radius = 0.5, distance = 1.7,
  2135.         LeaveCoords = vector4(-576.1931, -1062.5695, 25.4141, 40.6062)
  2136.     },
  2137.     --CHAIR 3
  2138.     {
  2139.         coords = vector3(-596.2625, -1053.3574, 21.9217), offsetZ = -0.10, heading = 353.9018, radius = 0.5, distance = 1.7,
  2140.         LeaveCoords = vector4(-595.5660, -1053.4266, 21.1438, 4.2685)
  2141.     },
  2142.     {
  2143.         coords = vector3(-598.3495, -1050.1283, 21.9217), offsetZ = -0.10, heading = 264.3328, radius = 0.5, distance = 1.7,
  2144.         LeaveCoords = vector4(-597.7604, -1050.1469, 21.1411, 270.7823)
  2145.     },
  2146.     {
  2147.         coords = vector3(-598.3517, -1051.0193, 21.9217), offsetZ = -0.10, heading = 264.8366, radius = 0.5, distance = 1.7,
  2148.         LeaveCoords = vector4(-597.7953, -1051.1156, 21.1411, 259.0909)
  2149.     },
  2150.  
  2151. }
  2152.  
  2153. Config.Bench = {
  2154.     --WINDOW 1
  2155.     {
  2156.         coords = vector3(-584.7419, -1069.2986, 22.0905), offsetZ = 1.00, heading = 272.3058, radius = 0.8, distance = 2.0,
  2157.         LeaveCoords = vector4(-585.0519, -1068.6437, 21.1442, 345.5218)
  2158.     },
  2159.     --WINDOW 2
  2160.     {
  2161.         coords = vector3(-578.6300, -1069.2866, 22.0905), offsetZ = 1.00, heading = 285.8839, radius = 0.8, distance = 2.0,
  2162.         LeaveCoords = vector4(-578.5605, -1068.6353, 21.1344, 7.3951)
  2163.     },
  2164.     --WINDOW 3
  2165.     {
  2166.         coords = vector3(-578.4955, -1069.2393, 26.2605), offsetZ = 1.00, heading = 282.1516, radius = 0.8, distance = 2.0,
  2167.         LeaveCoords = vector4(-578.5605, -1068.6353, 25.9344, 7.3951)
  2168.     },
  2169.     --SEAT 1
  2170.     {
  2171.         coords = vector3(-582.8824, -1049.4991, 22.0891), offsetZ = 1.00, heading = 120.1690, radius = 0.8, distance = 2.0,
  2172.         LeaveCoords = vector4(-582.9769, -1050.3119, 21.1442, 192.7837)
  2173.     },
  2174.     --SEAT 2
  2175.     {
  2176.         coords = vector3(-592.8516, -1077.7429, 21.7015), offsetZ = 1.00, heading = 317.5504, radius = 0.8, distance = 2.0,
  2177.         LeaveCoords = vector4(-593.4307, -1077.3423, 21.1297, 239.5108)
  2178.     },
  2179.     --SEAT 3
  2180.     {
  2181.         coords = vector3(-594.9337, -1077.9856, 21.7024), offsetZ = 1.00, heading = 316.6184, radius = 0.8, distance = 2.0,
  2182.         LeaveCoords = vector4(-595.3847, -1077.3186, 21.1293, 315.7857)
  2183.     },
  2184.     --SEAT 4
  2185.     {
  2186.         coords = vector3(-594.9964, -1075.6824, 21.7024), offsetZ = 1.00, heading = 212.0379, radius = 0.8, distance = 2.0,
  2187.         LeaveCoords = vector4(-594.3222, -1075.3815, 21.1263, 225.3110)
  2188.     },
  2189.     --SEAT 5
  2190.     {
  2191.         coords = vector3(-592.4146, -1075.2598, 21.7024), offsetZ = 1.00, heading = 183.1610, radius = 0.8, distance = 2.0,
  2192.         LeaveCoords = vector4(-591.6434, -1075.6534, 21.1290, 186.9127)
  2193.     },
  2194. }
  2195.  
  2196. Config.Pillow = {
  2197.     --PILLOW 1
  2198.     {
  2199.         coords = vector3(-582.1502, -1054.5817, 21.3311), offsetZ = 1.10, heading = 182.9807, radius = 0.8, distance = 2.0,
  2200.         LeaveCoords = vector4(-581.4259, -1054.5087, 21.1473, 191.5424)
  2201.     },
  2202.     --PILLOW 2
  2203.     {
  2204.         coords = vector3(-574.0070, -1054.9114, 21.3311), offsetZ = 1.10, heading = 89.2040, radius = 0.8, distance = 2.0,
  2205.         LeaveCoords = vector4(-574.1600, -1054.1501, 21.1442, 94.2657)
  2206.     },
  2207.     --PILLOW 3
  2208.     {
  2209.         coords = vector3(-573.9882, -1056.3031, 21.3311), offsetZ = 1.10, heading = 84.6315, radius = 0.8, distance = 2.0,
  2210.         LeaveCoords = vector4(-573.1756, -1056.2449, 21.1475, 115.6737)
  2211.     },
  2212.     --PILLOW 4
  2213.     {
  2214.         coords = vector3(-576.4922, -1056.2847, 21.3311), offsetZ = 1.10, heading = 271.6547, radius = 0.8, distance = 2.0,
  2215.         LeaveCoords = vector4(-577.3233, -1056.3135, 21.1473, 267.1850)
  2216.     },
  2217.     --PILLOW 5
  2218.     {
  2219.         coords = vector3(-574.1905, -1067.9054, 25.6161), offsetZ = 1.10, heading = 265.9863, radius = 0.8, distance = 2.0,
  2220.         LeaveCoords = vector4(-573.5264, -1067.8971, 25.4141, 290.6563)
  2221.     },
  2222.     --PILLOW 6
  2223.     {
  2224.         coords = vector3(-574.1637, -1066.6559, 25.6159), offsetZ = 1.10, heading = 280.7148, radius = 0.8, distance = 2.0,
  2225.         LeaveCoords = vector4(-573.4716, -1066.5393, 25.4147, 277.9704)
  2226.     },
  2227. }
  2228.  
  2229. Config.Delivery = {
  2230.     {  
  2231.         item = "gingerkitty_cookie", -- Item name
  2232.         Label = "Gingerkitty Cookie", -- Item label
  2233.         MinPrice = 25, -- Min price
  2234.         MaxPrice = 25, -- Max price
  2235.         MinCount = 1, -- Min Count
  2236.         MaxCount = 5, -- Max Count
  2237.     },
  2238.     {  
  2239.         item = "kira_kira_currye", -- Item name
  2240.         Label = "Kira Kira Currye", -- Item label
  2241.         MinPrice = 25, -- Min price
  2242.         MaxPrice = 25, -- Max price
  2243.         MinCount = 1, -- Min Count
  2244.         MaxCount = 5, -- Max Count
  2245.     },
  2246.     {  
  2247.         item = "om_nom_omurice", -- Item name
  2248.         Label = "Om nom omurice", -- Item label
  2249.         MinPrice = 25, -- Min price
  2250.         MaxPrice = 25, -- Max price
  2251.         MinCount = 1, -- Min Count
  2252.         MaxCount = 5, -- Max Count
  2253.     },
  2254.     {  
  2255.         item = "ballbarry_cupcake", -- Item name
  2256.         Label = "Ballbarry cupcake", -- Item label
  2257.         MinPrice = 25, -- Min price
  2258.         MaxPrice = 25, -- Max price
  2259.         MinCount = 1, -- Min Count
  2260.         MaxCount = 5, -- Max Count
  2261.     },
  2262.     {  
  2263.         item = "purrfect_parfait", -- Item name
  2264.         Label = "Purrfect Parfait", -- Item label
  2265.         MinPrice = 25, -- Min price
  2266.         MaxPrice = 25, -- Max price
  2267.         MinCount = 1, -- Min Count
  2268.         MaxCount = 5, -- Max Count
  2269.     },
  2270.     {  
  2271.         item = "oxygen_cake", -- Item name
  2272.         Label = "Oxygen Cake", -- Item label
  2273.         MinPrice = 25, -- Min price
  2274.         MaxPrice = 25, -- Max price
  2275.         MinCount = 1, -- Min Count
  2276.         MaxCount = 5, -- Max Count
  2277.     },
  2278.     {  
  2279.         item = "meowchi_mochi_ice_cream", -- Item name
  2280.         Label = "Meowchi Mochi Ice Cream", -- Item label
  2281.         MinPrice = 25, -- Min price
  2282.         MaxPrice = 25, -- Max price
  2283.         MinCount = 1, -- Min Count
  2284.         MaxCount = 5, -- Max Count
  2285.     },
  2286.     {  
  2287.         item = "meowchi_mochi_ice_cream", -- Item name
  2288.         Label = "Meowchi mochi icecream", -- Item label
  2289.         MinPrice = 25, -- Min price
  2290.         MaxPrice = 25, -- Max price
  2291.         MinCount = 1, -- Min Count
  2292.         MaxCount = 5, -- Max Count
  2293.     },
  2294.     {  
  2295.         item = "strawberry_shortcake", -- Item name
  2296.         Label = "Strawberry shortcake", -- Item label
  2297.         MinPrice = 25, -- Min price
  2298.         MaxPrice = 25, -- Max price
  2299.         MinCount = 1, -- Min Count
  2300.         MaxCount = 5, -- Max Count
  2301.     },
  2302.     {  
  2303.         item = "awwdorable_valentines_chocolate", -- Item name
  2304.         Label = "Awwdorable valentines chocolate", -- Item label
  2305.         MinPrice = 25, -- Min price
  2306.         MaxPrice = 25, -- Max price
  2307.         MinCount = 1, -- Min Count
  2308.         MaxCount = 5, -- Max Count
  2309.     },
  2310.     {  
  2311.         item = "warm_chicken_noodle", -- Item name
  2312.         Label = "Warm chicken noodle", -- Item label
  2313.         MinPrice = 25, -- Min price
  2314.         MaxPrice = 25, -- Max price
  2315.         MinCount = 1, -- Min Count
  2316.         MaxCount = 5, -- Max Count
  2317.     },
  2318.     {  
  2319.         item = "rice_balls", -- Item name
  2320.         Label = "Rice balls", -- Item label
  2321.         MinPrice = 25, -- Min price
  2322.         MaxPrice = 25, -- Max price
  2323.         MinCount = 1, -- Min Count
  2324.         MaxCount = 5, -- Max Count
  2325.     },
  2326.     {  
  2327.         item = "doki_doki_pancakes", -- Item name
  2328.         Label = "Doki doki pancakes", -- Item label
  2329.         MinPrice = 25, -- Min price
  2330.         MaxPrice = 25, -- Max price
  2331.         MinCount = 1, -- Min Count
  2332.         MaxCount = 5, -- Max Count
  2333.     },
  2334.     {  
  2335.         item = "hamburg_steak", -- Item name
  2336.         Label = "Hamburg steak", -- Item label
  2337.         MinPrice = 25, -- Min price
  2338.         MaxPrice = 25, -- Max price
  2339.         MinCount = 1, -- Min Count
  2340.         MaxCount = 5, -- Max Count
  2341.     },
  2342.     {  
  2343.         item = "sugoi_katsu_sando", -- Item name
  2344.         Label = "Sugoi katsu sando", -- Item label
  2345.         MinPrice = 25, -- Min price
  2346.         MaxPrice = 25, -- Max price
  2347.         MinCount = 1, -- Min Count
  2348.         MaxCount = 5, -- Max Count
  2349.     },
  2350.     {  
  2351.         item = "cat_macaroon_pink", -- Item name
  2352.         Label = "Cat macaroon pink", -- Item label
  2353.         MinPrice = 25, -- Min price
  2354.         MaxPrice = 25, -- Max price
  2355.         MinCount = 1, -- Min Count
  2356.         MaxCount = 5, -- Max Count
  2357.     },
  2358.     {  
  2359.         item = "cat_macaroon_turquoise", -- Item name
  2360.         Label = "Cat macaroon turquoise", -- Item label
  2361.         MinPrice = 25, -- Min price
  2362.         MaxPrice = 25, -- Max price
  2363.         MinCount = 1, -- Min Count
  2364.         MaxCount = 5, -- Max Count
  2365.     },
  2366.     {  
  2367.         item = "cat_macaroon_brown", -- Item name
  2368.         Label = "Cat macaroon brown", -- Item label
  2369.         MinPrice = 25, -- Min price
  2370.         MaxPrice = 25, -- Max price
  2371.         MinCount = 1, -- Min Count
  2372.         MaxCount = 5, -- Max Count
  2373.     },
  2374.     {  
  2375.         item = "cat_macaroon_green", -- Item name
  2376.         Label = "Cat macaroon green", -- Item label
  2377.         MinPrice = 25, -- Min price
  2378.         MaxPrice = 25, -- Max price
  2379.         MinCount = 1, -- Min Count
  2380.         MaxCount = 5, -- Max Count
  2381.     },
  2382.     {  
  2383.         item = "sweet_herbal_tea", -- Item name
  2384.         Label = "Sweet herbal tea", -- Item label
  2385.         MinPrice = 25, -- Min price
  2386.         MaxPrice = 25, -- Max price
  2387.         MinCount = 1, -- Min Count
  2388.         MaxCount = 5, -- Max Count
  2389.     },
  2390.     {  
  2391.         item = "booba_milk_tea_2", -- Item name
  2392.         Label = "Booba milk", -- Item label
  2393.         MinPrice = 25, -- Min price
  2394.         MaxPrice = 25, -- Max price
  2395.         MinCount = 1, -- Min Count
  2396.         MaxCount = 5, -- Max Count
  2397.     },
  2398.     {  
  2399.         item = "lovely_hot_chocolate", -- Item name
  2400.         Label = "Lovely hot chocolate", -- Item label
  2401.         MinPrice = 25, -- Min price
  2402.         MaxPrice = 25, -- Max price
  2403.         MinCount = 1, -- Min Count
  2404.         MaxCount = 5, -- Max Count
  2405.     },
  2406.     {  
  2407.         item = "hot_chocolate", -- Item name
  2408.         Label = "Hot chocolate", -- Item label
  2409.         MinPrice = 25, -- Min price
  2410.         MaxPrice = 25, -- Max price
  2411.         MinCount = 1, -- Min Count
  2412.         MaxCount = 5, -- Max Count
  2413.     },
  2414.     {  
  2415.         item = "matcha_coffee", -- Item name
  2416.         Label = "Matcha_coffee", -- Item label
  2417.         MinPrice = 25, -- Min price
  2418.         MaxPrice = 25, -- Max price
  2419.         MinCount = 1, -- Min Count
  2420.         MaxCount = 5, -- Max Count
  2421.     },
  2422.     {
  2423.         item = "dragos_fire_cupcake", -- Item name
  2424.         Label = "Dragos fire cupcake", -- Item label
  2425.         MinPrice = 25, -- Min price
  2426.         MaxPrice = 55, -- Max price
  2427.         MinCount = 1, -- Min Count
  2428.         MaxCount = 5, -- Max Count
  2429.     },
  2430. }
Add Comment
Please, Sign In to add comment