config.lua

Configuration file for westman_storez


Config = {
  
  -- "ESX" or "QB"
  Framework = "ESX",

  -- What basename are you using?
  Engine = "es_extended",
  
  -- Blips for every store https://docs.fivem.net/docs/game-references/blips/
  Blip = {
    id = 52,
    name = "Store",
    color = 2
  },
  
  -- Add more stores here by copying vector3 position
  Storez = {
    vector3(849.217590, 2383.780273, 54.150146),
    vector3(373.6971, 326.0022, 103.5664),
    vector3(25.7890, -1347.5590, 29.4970),
    vector3(1163.5720, -323.7314, 69.2052),
    vector3(1135.6344, -982.3812, 46.4158),
    vector3(-47.7817, -1757.2926, 29.4210),
    vector3(-500.5812, 289.7754, 83.3864)
  },

  -- Do you want to have discord logs when a player makes a purchase? Webhook url can be found in server/main.lua row 100
  DiscordLogs = true,

  -- All the items in the store
  Items = {
    {
      name = "Chips",
      itemhash = "chips",
      price = 25,
      quantity = 1,
      img = "https://www.estrella.se/content/uploads/2020/05/estrella-ranch-sourcream-chips-275g-175g.png",
      category = "food"
    },
    {
      name = "Hamburger",
      itemhash = "burger",
      price = 65,
      quantity = 1,
      img = "https://i.pinimg.com/originals/65/43/70/654370b925e03d919021c798a5a01b0f.png",
      category = "food"
    },
    {
      name = "Choclate",
      itemhash = "choclate",
      price = 22,
      quantity = 1,
      img = "https://cdn.abicart.com/shop/34524/art24/h3733/186663733-origpic-1bf055.png",
      category = "food"
    },
    {
      name = "Ben & Jerry",
      itemhash = "icecream",
      price = 45,
      quantity = 1,
      img = "https://shop.benjerry.com/cdn/shop/products/35725_US_IC_Half-Baked_473ml_FOP-1000x1000-a7f0e26f-260b-44b3-a5a4-505e5f47c673.png?v=1677670187&width=533",
      category = "food"
    },
    {
      name = "Lasagne",
      itemhash = "lasagne",
      price = 50,
      quantity = 1,
      img = "https://www.estrella.se/content/uploads/2020/05/estrella-ranch-sourcream-chips-275g-175g.png",
      category = "food"
    },
    {
      name = "Chicken",
      itemhash = "chicken",
      price = 150,
      quantity = 1,
      img = "https://www.estrella.se/content/uploads/2020/05/estrella-ranch-sourcream-chips-275g-175g.png",
      category = "food"
    },
    {
      name = "Trocadero",
      itemhash = "sprunk",
      price = 10,
      quantity = 1,
      img = "https://varsego.se/storage/66028CDD00072B1CB84D619CA6F812265C59A95E6B81243F5E6DB0A2579D981E/e71dfb1edeb441c9b7d2668d7c1a7213/png/media/8d78e1cbeb2b4f2c81e7cd75b8b4dcef/14215%20Trocadero%2020x33cl%20brk.png",
      category = "drinks"
    },
    {
      name = "Iphone",
      itemhash = "phone",
      price = 12000,
      quantity = 1,
      img = "https://pngimg.com/d/iphone_12_PNG3.png",
      category = "other"
    }
  }
}
```

Last updated