Public paste
Undefined
By: Guest | Date: Mar 4 2023 17:06 | Format: None | Expires: never | Size: 31.3 KB | Hits: 166

  1. Config = {}
  2. Config.UseTruckerJob = true -- true = The shops stock is based on when truckers refill it | false = shop inventory never runs out
  3. Config.UseTarget = GetConvar('UseTarget', 'false') == 'true' -- Use qb-target interactions (don't change this, go to your server.cfg and add `setr UseTarget true` to use this and just that from true to false or the other way around)
  4. Config.FirearmsLicenseCheck = false -- Whether a arms dealer checks for a firearms license
  5. Config.ShopsInvJsonFile = './json/shops-inventory.json' -- json file location
  6. -- Config.SellCasinoChips = {
  7. --     coords = vector4(950.37, 34.72, 71.87, 33.82),
  8. --     radius = 1.5,
  9. --     ped = 's_m_y_casino_01'
  10. -- }
  11. Config.Products = {
  12.     ["normal"] = {
  13.         [1] = {
  14.             name = "tosti",
  15.             price = 2,
  16.             amount = 50,
  17.             info = {},
  18.             type = "item",
  19.             slot = 1,
  20.         },
  21.         [2] = {
  22.             name = "bread",
  23.             price = 3,
  24.             amount = 50,
  25.             info = {},
  26.             type = "item",
  27.             slot = 2,
  28.         },
  29.         [3] = {
  30.             name = "water_bottle",
  31.             price = 2,
  32.             amount = 50,
  33.             info = {},
  34.             type = "item",
  35.             slot = 3,
  36.         },
  37.         [4] = {
  38.             name = "bzzz_prop_shop_coffee",
  39.             price = 3,
  40.             amount = 50,
  41.             info = {},
  42.             type = "item",
  43.             slot = 4,
  44.         },
  45.         [5] = {
  46.             name = "bzzz_prop_shop_bottle_cola",
  47.             price = 5,
  48.             amount = 50,
  49.             info = {},
  50.             type = "item",
  51.             slot = 5,
  52.         },
  53.         [6] = {
  54.             name = "bzzz_prop_shop_can_cola",
  55.             price = 5,
  56.             amount = 50,
  57.             info = {},
  58.             type = "item",
  59.             slot = 6,
  60.         },
  61.         [7] = {
  62.             name = "bzzz_prop_shop_bottle_zero",
  63.             price = 5,
  64.             amount = 50,
  65.             info = {},
  66.             type = "item",
  67.             slot = 7,
  68.         },
  69.         [8] = {
  70.             name = "bzzz_prop_shop_can_zero",
  71.             price = 5,
  72.             amount = 50,
  73.             info = {},
  74.             type = "item",
  75.             slot = 8,
  76.         },
  77.     },
  78.     ["liquor"] = {
  79.         [1] = {
  80.             name = "beer",
  81.             price = 4,
  82.             amount = 50,
  83.             info = {},
  84.             type = "item",
  85.             slot = 1,
  86.         },
  87.         [2] = {
  88.             name = "whiskey",
  89.             price = 20,
  90.             amount = 50,
  91.             info = {},
  92.             type = "item",
  93.             slot = 2,
  94.         },
  95.         [3] = {
  96.             name = "vodka",
  97.             price = 15,
  98.             amount = 50,
  99.             info = {},
  100.             type = "item",
  101.             slot = 3,
  102.         },
  103.     },
  104.     ["saefte"] = {
  105.         [1] = {
  106.             name = "applejuice",
  107.             price = 20,
  108.             amount = 50,
  109.             info = {},
  110.             type = "item",
  111.             slot = 1,
  112.         },
  113.         [2] = {
  114.             name = "plumjuice",
  115.             price = 20,
  116.             amount = 50,
  117.             info = {},
  118.             type = "item",
  119.             slot = 2,
  120.         },
  121.         [3] = {
  122.             name = "pearjuice",
  123.             price = 20,
  124.             amount = 50,
  125.             info = {},
  126.             type = "item",
  127.             slot = 3,
  128.         },
  129.         [4] = {
  130.             name = "strawberryjuice",
  131.             price = 20,
  132.             amount = 50,
  133.             info = {},
  134.             type = "item",
  135.             slot = 4,
  136.         },
  137.         [5] = {
  138.             name = "peachjuice",
  139.             price = 20,
  140.             amount = 50,
  141.             info = {},
  142.             type = "item",
  143.             slot = 5,
  144.         },
  145.         [6] = {
  146.             name = "citronjuice",
  147.             price = 20,
  148.             amount = 50,
  149.             info = {},
  150.             type = "item",
  151.             slot = 6,
  152.         },
  153.         [7] = {
  154.             name = "glas_bottle",
  155.             price = 2,
  156.             amount = 50,
  157.             info = {},
  158.             type = "item",
  159.             slot = 7,
  160.         },
  161.     },
  162.     ["icecream"] = {
  163.         [1] = {
  164.             name = "bzzz_icecream_cherry",
  165.             price = 7,
  166.             amount = 25,
  167.             info = {},
  168.             type = "item",
  169.             slot = 1,
  170.         },
  171.         [2] = {
  172.             name = "bzzz_icecream_chocolate",
  173.             price = 7,
  174.             amount =25,
  175.             info = {},
  176.             type = "item",
  177.             slot = 2,
  178.         },
  179.         [3] = {
  180.             name = "bzzz_icecream_lemon",
  181.             price = 7,
  182.             amount = 25,
  183.             info = {},
  184.             type = "item",
  185.             slot = 3,
  186.         },
  187.         [4] = {
  188.             name = "bzzz_icecream_pistachio",
  189.             price = 7,
  190.             amount = 25,
  191.             info = {},
  192.             type = "item",
  193.             slot = 4,
  194.         },
  195.         [5] = {
  196.             name = "bzzz_icecream_raspberry",
  197.             price = 7,
  198.             amount = 25,
  199.             info = {},
  200.             type = "item",
  201.             slot = 5,
  202.         },
  203.         [6] = {
  204.             name = "bzzz_icecream_stracciatella",
  205.             price = 7,
  206.             amount = 25,
  207.             info = {},
  208.             type = "item",
  209.             slot = 6,
  210.         },
  211.         [7] = {
  212.             name = "bzzz_icecream_strawberry",
  213.             price = 7,
  214.             amount = 25,
  215.             info = {},
  216.             type = "item",
  217.             slot = 7,
  218.         },
  219.         [8] = {
  220.             name = "bzzz_icecream_walnut",
  221.             price = 7,
  222.             amount = 25,
  223.             info = {},
  224.             type = "item",
  225.             slot = 8,
  226.         },
  227.     },
  228.     ["spieße"] = {
  229.         [1] = {
  230.             name = "skewer1",
  231.             price = 20,
  232.             amount = 50,
  233.             info = {},
  234.             type = "item",
  235.             slot = 1,
  236.         },
  237.         [2] = {
  238.             name = "chicken-intestine",
  239.             price = 20,
  240.             amount = 50,
  241.             info = {},
  242.             type = "item",
  243.             slot = 2,
  244.         },
  245.         [3] = {
  246.             name = "fishball",
  247.             price = 15,
  248.             amount = 50,
  249.             info = {},
  250.             type = "item",
  251.             slot = 3,
  252.         },
  253.         [4] = {
  254.             name = "black-pudding",
  255.             price = 5,
  256.             amount = 50,
  257.             info = {},
  258.             type = "item",
  259.             slot = 4,
  260.         },
  261.         [5] = {
  262.             name = "quail-eggs",
  263.             price = 5,
  264.             amount = 50,
  265.             info = {},
  266.             type = "item",
  267.             slot = 5,
  268.         },
  269.         [6] = {
  270.             name = "skewerhotdog",
  271.             price = 50,
  272.             amount = 50,
  273.             info = {},
  274.             type = "item",
  275.             slot = 6,
  276.         },
  277.         [7] = {
  278.             name = "skewerbanana",
  279.             price = 50,
  280.             amount = 50,
  281.             info = {},
  282.             type = "item",
  283.             slot = 7,
  284.         },
  285.         [8] = {
  286.             name = "skewercheese",
  287.             price = 50,
  288.             amount = 50,
  289.             info = {},
  290.             type = "item",
  291.             slot = 8,
  292.         },
  293.         [9] = {
  294.             name = "skewerborq",
  295.             price = 50,
  296.             amount = 50,
  297.             info = {},
  298.             type = "item",
  299.             slot = 9,
  300.         },
  301.         [10] = {
  302.             name = "chicken-feet",
  303.             price = 50,
  304.             amount = 50,
  305.             info = {},
  306.             type = "item",
  307.             slot = 6,
  308.         },
  309.         [11] = {
  310.             name = "skewercorn",
  311.             price = 50,
  312.             amount = 50,
  313.             info = {},
  314.             type = "item",
  315.             slot = 6,
  316.         },
  317.     },
  318.     ["hardware"] = {
  319.         [1] = {
  320.             name = "garden_pitcher",
  321.             price = 20,
  322.             amount = 50,
  323.             info = {},
  324.             type = "item",
  325.             slot = 1,
  326.         },
  327.         [2] = {
  328.             name = "garden_shovel",
  329.             price = 50,
  330.             amount = 50,
  331.             info = {},
  332.             type = "item",
  333.             slot = 2,
  334.         },
  335.     },
  336.     ["phone"] = {
  337.         [1] = {
  338.             name = "classic_phone",
  339.             price = 100,
  340.             amount = 50,
  341.             info = {},
  342.             type = "item",
  343.             slot = 1,
  344.         },
  345.         [2] = {
  346.             name = "black_phone",
  347.             price = 100,
  348.             amount = 50,
  349.             info = {},
  350.             type = "item",
  351.             slot = 2,
  352.         },
  353.         [3] = {
  354.             name = "blue_phone",
  355.             price = 100,
  356.             amount = 50,
  357.             info = {},
  358.             type = "item",
  359.             slot = 3,
  360.         },
  361.         [4] = {
  362.             name = "gold_phone",
  363.             price = 100,
  364.             amount = 50,
  365.             info = {},
  366.             type = "item",
  367.             slot = 4,
  368.         },
  369.         [5] = {
  370.             name = "purple_phone",
  371.             price = 100,
  372.             amount = 50,
  373.             info = {},
  374.             type = "item",
  375.             slot = 5,
  376.         },
  377.         [6] = {
  378.             name = "red_phone",
  379.             price = 100,
  380.             amount = 50,
  381.             info = {},
  382.             type = "item",
  383.             slot = 6,
  384.         },
  385.         [7] = {
  386.             name = "green_phone",
  387.             price = 100,
  388.             amount = 50,
  389.             info = {},
  390.             type = "item",
  391.             slot = 7,
  392.         },
  393.         [8] = {
  394.             name = "greenlight_phone",
  395.             price = 150,
  396.             amount = 50,
  397.             info = {},
  398.             type = "item",
  399.             slot = 8,
  400.         },
  401.         [9] = {
  402.             name = "pink_phone",
  403.             price = 100,
  404.             amount = 50,
  405.             info = {},
  406.             type = "item",
  407.             slot = 9,
  408.         },
  409.         [10] = {
  410.             name = "white_phone",
  411.             price = 100,
  412.             amount = 50,
  413.             info = {},
  414.             type = "item",
  415.             slot = 10,
  416.         },
  417.         [11] = {
  418.             name = "powerbank",
  419.             price = 75,
  420.             amount = 50,
  421.             info = {},
  422.             type = "item",
  423.             slot = 10,
  424.         },
  425.         [10] = {
  426.             name = "simcard",
  427.             price = 15,
  428.             amount = 50,
  429.             info = {},
  430.             type = "item",
  431.             slot = 10,
  432.         },
  433.     },
  434.     ["weapons"] = {
  435.         [1] = {
  436.             name = "weapon_knife",
  437.             price = 250,
  438.             amount = 10,
  439.             info = {},
  440.             type = "item",
  441.             slot = 1,
  442.         },
  443.         [2] = {
  444.             name = "weapon_bat",
  445.             price = 250,
  446.             amount = 10,
  447.             info = {},
  448.             type = "item",
  449.             slot = 2,
  450.         },
  451.         [3] = {
  452.             name = "weapon_hatchet",
  453.             price = 250,
  454.             amount = 10,
  455.             info = {},
  456.             type = "item",
  457.             slot = 3,
  458.             requiredJob = { "mechanic", "police" }
  459.         },
  460.         [4] = {
  461.             name = "weapon_pistol",
  462.             price = 250000,
  463.             amount = 5,
  464.             info = {},
  465.             type = "item",
  466.             slot = 4,
  467.             requiresLicense = true
  468.         },
  469.         [5] = {
  470.             name = "weapon_snspistol",
  471.             price = 150000,
  472.             amount = 5,
  473.             info = {},
  474.             type = "item",
  475.             slot = 5,
  476.             requiresLicense = true
  477.         },
  478.         [6] = {
  479.             name = "weapon_vintagepistol",
  480.             price = 400000,
  481.             amount = 5,
  482.             info = {},
  483.             type = "item",
  484.             slot = 6,
  485.             requiresLicense = true
  486.         },
  487.         [7] = {
  488.             name = "pistol_ammo",
  489.             price = 25000,
  490.             amount = 50,
  491.             info = {},
  492.             type = "item",
  493.             slot = 7,
  494.             requiresLicense = true
  495.         },
  496.     },
  497. }
  498.  
  499. Config.Locations = {
  500.     -- 24/7 Locations
  501.     ["247supermarket"] = {
  502.         ["label"] = "24/7 Supermarkt",
  503.         ["coords"] = vector4(24.47, -1346.62, 29.5, 271.66),
  504.         ["ped"] = 'mp_m_shopkeep_01',
  505.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  506.         ["radius"] = 1.5,
  507.         ["targetIcon"] = "fas fa-shopping-basket",
  508.         ["targetLabel"] = "Einkaufen",
  509.         ["products"] = Config.Products["normal"],
  510.         ["showblip"] = true,
  511.         ["blipsprite"] = 52,
  512.         ["blipscale"] = 0.6,
  513.         ["blipcolor"] = 0,
  514.         ["delivery"] = vector4(26.45, -1315.51, 29.62, 0.07)
  515.     },
  516.  
  517.     ["247supermarket2"] = {
  518.         ["label"] = "24/7 Supermarkt",
  519.         ["coords"] = vector4(-3039.54, 584.38, 7.91, 17.27),
  520.         ["ped"] = 'mp_m_shopkeep_01',
  521.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  522.         ["radius"] = 1.5,
  523.         ["targetIcon"] = "fas fa-shopping-basket",
  524.         ["targetLabel"] = "Einkaufen",
  525.         ["products"] = Config.Products["normal"],
  526.         ["showblip"] = true,
  527.         ["blipsprite"] = 52,
  528.         ["blipscale"] = 0.6,
  529.         ["blipcolor"] = 0,
  530.         ["delivery"] = vector4(-3047.95, 590.71, 7.62, 19.53)
  531.     },
  532.  
  533.     ["247supermarket3"] = {
  534.         ["label"] = "24/7 Supermarkt",
  535.         ["coords"] = vector4(-3242.97, 1000.01, 12.83, 357.57),
  536.         ["ped"] = 'mp_m_shopkeep_01',
  537.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  538.         ["radius"] = 1.5,
  539.         ["targetIcon"] = "fas fa-shopping-basket",
  540.         ["targetLabel"] = "Einkaufen",
  541.         ["products"] = Config.Products["normal"],
  542.         ["showblip"] = true,
  543.         ["blipsprite"] = 52,
  544.         ["blipscale"] = 0.6,
  545.         ["blipcolor"] = 0,
  546.         ["delivery"] = vector4(-3245.76, 1005.25, 12.83, 269.45)
  547.     },
  548.  
  549.     ["247supermarket4"] = {
  550.         ["label"] = "24/7 Supermarkt",
  551.         ["coords"] = vector4(1728.07, 6415.63, 35.04, 242.95),
  552.         ["ped"] = 'mp_m_shopkeep_01',
  553.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  554.         ["radius"] = 1.5,
  555.         ["targetIcon"] = "fas fa-shopping-basket",
  556.         ["targetLabel"] = "Einkaufen",
  557.         ["products"] = Config.Products["normal"],
  558.         ["showblip"] = true,
  559.         ["blipsprite"] = 52,
  560.         ["blipscale"] = 0.6,
  561.         ["blipcolor"] = 0,
  562.         ["delivery"] = vector4(1741.76, 6419.61, 35.04, 6.83)
  563.     },
  564.  
  565.     ["247supermarket5"] = {
  566.         ["label"] = "24/7 Supermarkt",
  567.         ["coords"] = vector4(1959.82, 3740.48, 32.34, 301.57),
  568.         ["ped"] = 'mp_m_shopkeep_01',
  569.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  570.         ["radius"] = 1.5,
  571.         ["targetIcon"] = "fas fa-shopping-basket",
  572.         ["targetLabel"] = "Einkaufen",
  573.         ["products"] = Config.Products["normal"],
  574.         ["showblip"] = true,
  575.         ["blipsprite"] = 52,
  576.         ["blipscale"] = 0.6,
  577.         ["blipcolor"] = 0,
  578.         ["delivery"] = vector4(1963.81, 3750.09, 32.26, 302.46)
  579.     },
  580.  
  581.     ["247supermarket6"] = {
  582.         ["label"] = "24/7 Supermarkt",
  583.         ["coords"] = vector4(549.13, 2670.85, 42.16, 99.39),
  584.         ["ped"] = 'mp_m_shopkeep_01',
  585.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  586.         ["radius"] = 1.5,
  587.         ["targetIcon"] = "fas fa-shopping-basket",
  588.         ["targetLabel"] = "Einkaufen",
  589.         ["products"] = Config.Products["normal"],
  590.         ["showblip"] = true,
  591.         ["blipsprite"] = 52,
  592.         ["blipscale"] = 0.6,
  593.         ["blipcolor"] = 0,
  594.         ["delivery"] = vector4(541.54, 2663.53, 42.17, 120.51)
  595.     },
  596.  
  597.     ["247supermarket7"] = {
  598.         ["label"] = "24/7 Supermarkt",
  599.         ["coords"] = vector4(2677.47, 3279.76, 55.24, 335.08),
  600.         ["ped"] = 'mp_m_shopkeep_01',
  601.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  602.         ["radius"] = 1.5,
  603.         ["targetIcon"] = "fas fa-shopping-basket",
  604.         ["targetLabel"] = "Einkaufen",
  605.         ["products"] = Config.Products["normal"],
  606.         ["showblip"] = true,
  607.         ["blipsprite"] = 52,
  608.         ["blipscale"] = 0.6,
  609.         ["blipcolor"] = 0,
  610.         ["delivery"] = vector4(2662.19, 3264.95, 55.24, 168.55)
  611.     },
  612.  
  613.     ["247supermarket8"] = {
  614.         ["label"] = "24/7 Supermarkt",
  615.         ["coords"] = vector4(2556.66, 380.84, 108.62, 356.67),
  616.         ["ped"] = 'mp_m_shopkeep_01',
  617.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  618.         ["radius"] = 1.5,
  619.         ["targetIcon"] = "fas fa-shopping-basket",
  620.         ["targetLabel"] = "Einkaufen",
  621.         ["products"] = Config.Products["normal"],
  622.         ["showblip"] = true,
  623.         ["blipsprite"] = 52,
  624.         ["blipscale"] = 0.6,
  625.         ["blipcolor"] = 0,
  626.         ["delivery"] = vector4(2553.24, 399.73, 108.56, 344.86)
  627.     },
  628.  
  629.     ["247supermarket9"] = {
  630.         ["label"] = "24/7 Supermarkt",
  631.         ["coords"] = vector4(372.66, 326.98, 103.57, 253.73),
  632.         ["ped"] = 'mp_m_shopkeep_01',
  633.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  634.         ["radius"] = 1.5,
  635.         ["targetIcon"] = "fas fa-shopping-basket",
  636.         ["targetLabel"] = "Einkaufen",
  637.         ["products"] = Config.Products["normal"],
  638.         ["showblip"] = true,
  639.         ["blipsprite"] = 52,
  640.         ["blipscale"] = 0.6,
  641.         ["blipcolor"] = 0,
  642.         ["delivery"] = vector4(379.97, 357.3, 102.56, 26.42)
  643.     },
  644.  
  645.     -- LTD Gasoline Locations
  646.     ["ltdgasoline"] = {
  647.         ["label"] = "Tankstellenshop",
  648.         ["coords"] = vector4(-47.02, -1758.23, 29.42, 45.05),
  649.         ["ped"] = 'mp_m_shopkeep_01',
  650.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  651.         ["radius"] = 1.5,
  652.         ["targetIcon"] = "fas fa-shopping-basket",
  653.         ["targetLabel"] = "Einkaufen",
  654.         ["products"] = Config.Products["normal"],
  655.         ["showblip"] = true,
  656.         ["blipsprite"] = 52,
  657.         ["blipscale"] = 0.6,
  658.         ["blipcolor"] = 0,
  659.         ["delivery"] = vector4(-40.51, -1747.45, 29.29, 326.39)
  660.     },
  661.  
  662.     ["ltdgasoline2"] = {
  663.         ["label"] = "Tankstellenshop",
  664.         ["coords"] = vector4(-706.06, -913.97, 19.22, 88.04),
  665.         ["ped"] = 'mp_m_shopkeep_01',
  666.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  667.         ["radius"] = 1.5,
  668.         ["targetIcon"] = "fas fa-shopping-basket",
  669.         ["targetLabel"] = "Einkaufen",
  670.         ["products"] = Config.Products["normal"],
  671.         ["showblip"] = true,
  672.         ["blipsprite"] = 52,
  673.         ["blipscale"] = 0.6,
  674.         ["blipcolor"] = 0,
  675.         ["delivery"] = vector4(-702.89, -917.44, 19.21, 181.96)
  676.     },
  677.  
  678.     ["ltdgasoline3"] = {
  679.         ["label"] = "Tankstellenshop",
  680.         ["coords"] = vector4(-1820.02, 794.03, 138.09, 135.45),
  681.         ["ped"] = 'mp_m_shopkeep_01',
  682.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  683.         ["radius"] = 1.5,
  684.         ["targetIcon"] = "fas fa-shopping-basket",
  685.         ["targetLabel"] = "Einkaufen",
  686.         ["products"] = Config.Products["normal"],
  687.         ["showblip"] = true,
  688.         ["blipsprite"] = 52,
  689.         ["blipscale"] = 0.6,
  690.         ["blipcolor"] = 0,
  691.         ["delivery"] = vector4(-1829.29, 801.49, 138.41, 41.39)
  692.     },
  693.  
  694.     ["ltdgasoline4"] = {
  695.         ["label"] = "Tankstellenshop",
  696.         ["coords"] = vector4(1164.71, -322.94, 69.21, 101.72),
  697.         ["ped"] = 'mp_m_shopkeep_01',
  698.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  699.         ["radius"] = 1.5,
  700.         ["targetIcon"] = "fas fa-shopping-basket",
  701.         ["targetLabel"] = "Einkaufen",
  702.         ["products"] = Config.Products["normal"],
  703.         ["showblip"] = true,
  704.         ["blipsprite"] = 52,
  705.         ["blipscale"] = 0.6,
  706.         ["blipcolor"] = 0,
  707.         ["delivery"] = vector4(1160.62, -312.06, 69.28, 3.77)
  708.     },
  709.  
  710.     ["ltdgasoline5"] = {
  711.         ["label"] = "Tankstellenshop",
  712.         ["coords"] = vector4(1697.87, 4922.96, 42.06, 324.71),
  713.         ["ped"] = 'mp_m_shopkeep_01',
  714.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  715.         ["radius"] = 1.5,
  716.         ["targetIcon"] = "fas fa-shopping-basket",
  717.         ["targetLabel"] = "Einkaufen",
  718.         ["products"] = Config.Products["normal"],
  719.         ["showblip"] = true,
  720.         ["blipsprite"] = 52,
  721.         ["blipscale"] = 0.6,
  722.         ["blipcolor"] = 0,
  723.         ["delivery"] = vector4(1702.68, 4917.28, 42.22, 139.27)
  724.     },
  725.  
  726.     -- Rob's Liquor Locations
  727.     ["robsliquor"] = {
  728.         ["label"] = "Likörladen",
  729.         ["coords"] = vector4(-1221.58, -908.15, 12.33, 35.49),
  730.         ["ped"] = 'mp_m_shopkeep_01',
  731.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  732.         ["radius"] = 1.5,
  733.         ["targetIcon"] = "fas fa-shopping-basket",
  734.         ["targetLabel"] = "Getränke kaufen",
  735.         ["products"] = Config.Products["liquor"],
  736.         ["showblip"] = true,
  737.         ["blipsprite"] = 52,
  738.         ["blipscale"] = 0.6,
  739.         ["blipcolor"] = 0,
  740.         ["delivery"] = vector4(-1226.92, -901.82, 12.28, 213.26)
  741.     },
  742.  
  743.     ["robsliquor2"] = {
  744.         ["label"] = "Likörladen",
  745.         ["coords"] = vector4(-1486.59, -377.68, 40.16, 139.51),
  746.         ["ped"] = 'mp_m_shopkeep_01',
  747.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  748.         ["radius"] = 1.5,
  749.         ["targetIcon"] = "fas fa-shopping-basket",
  750.         ["targetLabel"] = "Getränke kaufen",
  751.         ["products"] = Config.Products["liquor"],
  752.         ["showblip"] = true,
  753.         ["blipsprite"] = 52,
  754.         ["blipscale"] = 0.6,
  755.         ["blipcolor"] = 0,
  756.         ["delivery"] = vector4(-1468.29, -387.61, 38.79, 220.13)
  757.     },
  758.  
  759.     ["robsliquor3"] = {
  760.         ["label"] = "Likörladen",
  761.         ["coords"] = vector4(-2966.39, 391.42, 15.04, 87.48),
  762.         ["ped"] = 'mp_m_shopkeep_01',
  763.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  764.         ["radius"] = 1.5,
  765.         ["targetIcon"] = "fas fa-shopping-basket",
  766.         ["targetLabel"] = "Getränke kaufen",
  767.         ["products"] = Config.Products["liquor"],
  768.         ["showblip"] = true,
  769.         ["blipsprite"] = 52,
  770.         ["blipscale"] = 0.6,
  771.         ["blipcolor"] = 0,
  772.         ["delivery"] = vector4(-2961.49, 376.25, 15.02, 111.41)
  773.     },
  774.  
  775.     ["robsliquor4"] = {
  776.         ["label"] = "Likörladen",
  777.         ["coords"] = vector4(1165.17, 2710.88, 38.16, 179.43),
  778.         ["ped"] = 'mp_m_shopkeep_01',
  779.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  780.         ["radius"] = 1.5,
  781.         ["targetIcon"] = "fas fa-shopping-basket",
  782.         ["targetLabel"] = "Getränke kaufen",
  783.         ["products"] = Config.Products["liquor"],
  784.         ["showblip"] = true,
  785.         ["blipsprite"] = 52,
  786.         ["blipscale"] = 0.6,
  787.         ["blipcolor"] = 0,
  788.         ["delivery"] = vector4(1194.52, 2722.21, 38.62, 9.37)
  789.     },
  790.  
  791.     ["robsliquor5"] = {
  792.         ["label"] = "Likörladen",
  793.         ["coords"] = vector4(1134.2, -982.91, 46.42, 277.24),
  794.         ["ped"] = 'mp_m_shopkeep_01',
  795.         ["scenario"] = "WORLD_HUMAN_STAND_MOBILE",
  796.         ["radius"] = 1.5,
  797.         ["targetIcon"] = "fas fa-shopping-basket",
  798.         ["targetLabel"] = "Getränke kaufen",
  799.         ["products"] = Config.Products["liquor"],
  800.         ["showblip"] = true,
  801.         ["blipsprite"] = 52,
  802.         ["blipscale"] = 0.6,
  803.         ["blipcolor"] = 0,
  804.         ["delivery"] = vector4(1129.73, -989.27, 45.97, 280.98)
  805.     },
  806.  
  807.     -- -- Hardware Store Locations
  808.     -- ["hardware"] = {
  809.     --     ["label"] = "Hardware Store",
  810.     --     ["coords"] = vector4(45.68, -1749.04, 29.61, 53.13),
  811.     --     ["ped"] = 'mp_m_waremech_01',
  812.     --     ["scenario"] = "WORLD_HUMAN_CLIPBOARD",
  813.     --     ["radius"] = 1.5,
  814.     --     ["targetIcon"] = "fas fa-wrench",
  815.     --     ["targetLabel"] = "Open Hardware Store",
  816.     --     ["products"] = Config.Products["hardware"],
  817.     --     ["showblip"] = true,
  818.     --     ["blipsprite"] = 402,
  819.     --     ["blipscale"] = 0.8,
  820.     --     ["blipcolor"] = 0,
  821.     --     ["delivery"] = vector4(89.15, -1745.29, 30.09, 315.25)
  822.     -- },
  823.  
  824.     -- ["hardware2"] = {
  825.     --     ["label"] = "Hardware Store",
  826.     --     ["coords"] = vector4(2747.71, 3472.85, 55.67, 255.08),
  827.     --     ["ped"] = 'mp_m_waremech_01',
  828.     --     ["scenario"] = "WORLD_HUMAN_CLIPBOARD",
  829.     --     ["radius"] = 1.5,
  830.     --     ["targetIcon"] = "fas fa-wrench",
  831.     --     ["targetLabel"] = "Open Hardware Store",
  832.     --     ["products"] = Config.Products["hardware"],
  833.     --     ["showblip"] = true,
  834.     --     ["blipsprite"] = 402,
  835.     --     ["blipscale"] = 0.8,
  836.     --     ["blipcolor"] = 0,
  837.     --     ["delivery"] = vector4(2704.68, 3457.21, 55.54, 176.28)
  838.     -- },
  839.  
  840.     -- ["hardware3"] = {
  841.     --     ["label"] = "Hardware Store",
  842.     --     ["coords"] = vector4(-421.83, 6136.13, 31.88, 228.2),
  843.     --     ["ped"] = 'mp_m_waremech_01',
  844.     --     ["scenario"] = "WORLD_HUMAN_CLIPBOARD",
  845.     --     ["radius"] = 1.5,
  846.     --     ["targetIcon"] = "fas fa-wrench",
  847.     --     ["targetLabel"] = "Hardware Store",
  848.     --     ["products"] = Config.Products["hardware"],
  849.     --     ["showblip"] = true,
  850.     --     ["blipsprite"] = 402,
  851.     --     ["blipscale"] = 0.8,
  852.     --     ["blipcolor"] = 0,
  853.     --     ["delivery"] = vector4(-438.25, 6146.9, 31.48, 136.99)
  854.     -- },
  855.  
  856.     -- Ammunation Locations
  857.     ["ammunation"] = {
  858.         ["label"] = "Waffenladen",
  859.         ["type"] = "weapon",
  860.         ["coords"] = vector4(-661.96, -933.53, 21.83, 177.05),
  861.         ["ped"] = 's_m_y_ammucity_01',
  862.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  863.         ["radius"] = 1.5,
  864.         ["targetIcon"] = "fas fa-gun",
  865.         ["targetLabel"] = "Waffe kaufen",
  866.         ["products"] = Config.Products["weapons"],
  867.         ["showblip"] = true,
  868.         ["blipsprite"] = 110,
  869.         ["blipscale"] = 0.6,
  870.         ["blipcolor"] = 0,
  871.         ["delivery"] = vector4(-660.61, -938.14, 21.83, 167.22)
  872.     },
  873.     ["ammunation2"] = {
  874.         ["label"] = "Waffenladen",
  875.         ["type"] = "weapon",
  876.         ["coords"] = vector4(809.68, -2159.13, 29.62, 1.43),
  877.         ["ped"] = 's_m_y_ammucity_01',
  878.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  879.         ["radius"] = 1.5,
  880.         ["targetIcon"] = "fas fa-gun",
  881.         ["targetLabel"] = "Waffe kaufen",
  882.         ["products"] = Config.Products["weapons"],
  883.         ["showblip"] = true,
  884.         ["blipsprite"] = 110,
  885.         ["blipscale"] = 0.6,
  886.         ["blipcolor"] = 0,
  887.         ["delivery"] = vector4(820.97, -2146.7, 28.71, 359.98)
  888.     },
  889.     ["ammunation3"] = {
  890.         ["label"] = "Waffenladen",
  891.         ["type"] = "weapon",
  892.         ["coords"] = vector4(1692.67, 3761.38, 34.71, 227.65),
  893.         ["ped"] = 's_m_y_ammucity_01',
  894.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  895.         ["radius"] = 1.5,
  896.         ["targetIcon"] = "fas fa-gun",
  897.         ["targetLabel"] = "Waffe kaufen",
  898.         ["products"] = Config.Products["weapons"],
  899.         ["showblip"] = true,
  900.         ["blipsprite"] = 110,
  901.         ["blipscale"] = 0.6,
  902.         ["blipcolor"] = 0,
  903.         ["delivery"] = vector4(1687.17, 3755.47, 34.34, 163.69)
  904.     },
  905.     ["ammunation4"] = {
  906.         ["label"] = "Waffenladen",
  907.         ["type"] = "weapon",
  908.         ["coords"] = vector4(-331.23, 6085.37, 31.45, 228.02),
  909.         ["ped"] = 's_m_y_ammucity_01',
  910.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  911.         ["radius"] = 1.5,
  912.         ["targetIcon"] = "fas fa-gun",
  913.         ["targetLabel"] = "Waffe kaufen",
  914.         ["products"] = Config.Products["weapons"],
  915.         ["showblip"] = true,
  916.         ["blipsprite"] = 110,
  917.         ["blipscale"] = 0.6,
  918.         ["blipcolor"] = 0,
  919.         ["delivery"] = vector4(-341.72, 6098.49, 31.32, 11.05)
  920.     },
  921.     ["ammunation5"] = {
  922.         ["label"] = "Waffenladen",
  923.         ["type"] = "weapon",
  924.         ["coords"] = vector4(253.63, -51.02, 69.94, 72.91),
  925.         ["ped"] = 's_m_y_ammucity_01',
  926.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  927.         ["radius"] = 1.5,
  928.         ["targetIcon"] = "fas fa-gun",
  929.         ["targetLabel"] = "Waffe kaufen",
  930.         ["products"] = Config.Products["weapons"],
  931.         ["showblip"] = true,
  932.         ["blipsprite"] = 110,
  933.         ["blipscale"] = 0.6,
  934.         ["blipcolor"] = 0,
  935.         ["delivery"] = vector4(249.0, -50.64, 69.94, 60.71)
  936.     },
  937.     ["ammunation6"] = {
  938.         ["label"] = "Waffenladen",
  939.         ["type"] = "weapon",
  940.         ["coords"] = vector4(23.0, -1105.67, 29.8, 162.91),
  941.         ["ped"] = 's_m_y_ammucity_01',
  942.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  943.         ["radius"] = 1.5,
  944.         ["targetIcon"] = "fas fa-gun",
  945.         ["targetLabel"] = "Waffe kaufen",
  946.         ["products"] = Config.Products["weapons"],
  947.         ["showblip"] = true,
  948.         ["blipsprite"] = 110,
  949.         ["blipscale"] = 0.6,
  950.         ["blipcolor"] = 0,
  951.         ["delivery"] = vector4(-5.82, -1107.48, 29.0, 164.32)
  952.     },
  953.     ["ammunation7"] = {
  954.         ["label"] = "Waffenladen",
  955.         ["type"] = "weapon",
  956.         ["coords"] = vector4(2567.48, 292.59, 108.73, 349.68),
  957.         ["ped"] = 's_m_y_ammucity_01',
  958.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  959.         ["radius"] = 1.5,
  960.         ["targetIcon"] = "fas fa-gun",
  961.         ["targetLabel"] = "Waffe kaufen",
  962.         ["products"] = Config.Products["weapons"],
  963.         ["showblip"] = true,
  964.         ["blipsprite"] = 110,
  965.         ["blipscale"] = 0.6,
  966.         ["blipcolor"] = 0,
  967.         ["delivery"] = vector4(2578.77, 285.53, 108.61, 277.2)
  968.     },
  969.     ["ammunation8"] = {
  970.         ["label"] = "Waffenladen",
  971.         ["type"] = "weapon",
  972.         ["coords"] = vector4(-1118.59, 2700.05, 18.55, 221.89),
  973.         ["ped"] = 's_m_y_ammucity_01',
  974.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  975.         ["radius"] = 1.5,
  976.         ["targetIcon"] = "fas fa-gun",
  977.         ["targetLabel"] = "Waffe kaufen",
  978.         ["products"] = Config.Products["weapons"],
  979.         ["showblip"] = true,
  980.         ["blipsprite"] = 110,
  981.         ["blipscale"] = 0.6,
  982.         ["blipcolor"] = 0,
  983.         ["delivery"] = vector4(-1127.67, 2708.18, 18.8, 41.76)
  984.     },
  985.     ["ammunation9"] = {
  986.         ["label"] = "Waffenladen",
  987.         ["type"] = "weapon",
  988.         ["coords"] = vector4(841.92, -1035.32, 28.19, 1.56),
  989.         ["ped"] = 's_m_y_ammucity_01',
  990.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  991.         ["radius"] = 1.5,
  992.         ["targetIcon"] = "fas fa-gun",
  993.         ["targetLabel"] = "Waffe kaufen",
  994.         ["products"] = Config.Products["weapons"],
  995.         ["showblip"] = true,
  996.         ["blipsprite"] = 110,
  997.         ["blipscale"] = 0.6,
  998.         ["blipcolor"] = 0,
  999.         ["delivery"] = vector4(847.83, -1020.36, 27.88, 88.29)
  1000.     },
  1001.     ["ammunation10"] = {
  1002.         ["label"] = "Waffenladen",
  1003.         ["type"] = "weapon",
  1004.         ["coords"] = vector4(-1304.19, -395.12, 36.7, 75.03),
  1005.         ["ped"] = 's_m_y_ammucity_01',
  1006.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  1007.         ["radius"] = 1.5,
  1008.         ["targetIcon"] = "fas fa-gun",
  1009.         ["targetLabel"] = "Waffe kaufen",
  1010.         ["products"] = Config.Products["weapons"],
  1011.         ["showblip"] = true,
  1012.         ["blipsprite"] = 110,
  1013.         ["blipscale"] = 0.6,
  1014.         ["blipcolor"] = 0,
  1015.         ["delivery"] = vector4(-1302.44, -385.23, 36.62, 303.79)
  1016.     },
  1017.     ["ammunation11"] = {
  1018.         ["label"] = "Waffenladen",
  1019.         ["type"] = "weapon",
  1020.         ["coords"] = vector4(-3173.31, 1088.85, 20.84, 244.18),
  1021.         ["ped"] = 's_m_y_ammucity_01',
  1022.         ["scenario"] = "WORLD_HUMAN_COP_IDLES",
  1023.         ["radius"] = 1.5,
  1024.         ["targetIcon"] = "fas fa-gun",
  1025.         ["targetLabel"] = "Waffe kaufen",
  1026.         ["products"] = Config.Products["weapons"],
  1027.         ["showblip"] = true,
  1028.         ["blipsprite"] = 110,
  1029.         ["blipscale"] = 0.6,
  1030.         ["blipcolor"] = 0,
  1031.         ["delivery"] = vector4(-3183.6, 1084.35, 20.84, 68.13)
  1032.     },
  1033. }
  1034.