LC-Development
  • 👋Welcome to HapticCode
  • 📚Library
    • 🖥️Haptic-Lib
      • 🔧 Config
      • 📙 Usage
      • 🤝Client Functions
        • Blips
        • Items
        • Notify
        • Target
        • Peds
      • 💻Server Functions
        • Items
        • Jobs
        • Money Functions
        • Notify
  • 😇Remastered Scripts
    • 🛒 LC-Businesses
      • 🎯Job Blips
      • 💼 Duty Locations
      • ❄️ Fridges
        • Fridge Shops
        • Fridge Stashs
        • Final Step
      • 📥 Trays
      • 🍔 Drink/Fryer/Grill/Pack
      • 📦Shared Employee Stash
      • 📦Private Employee Stash
      • 📦Table Stashs
      • 🪑 Chairs
      • 💃 NPC Dancers/Strippers
      • 🎧 DJ Booths
      • 💰Cash Registers
      • 🧑Custom Animations
      • 🍔Consumables
    • 🏛️LC-Cityhall
      • 📝Config
      • 💳Licenses
  • Haptic
    • 😷 Haptic-Gangs
      • 🔧 Initial Config
      • 📚 Zone Configuration
      • 💊Drug Dealing
        • 💊 Zone Based Dealing
      • 💀Death Tracker
      • 💻Exports
      • 📝 Integrations
        • 🚑 QB-AmbulanceJob
        • 💎 QB-Jewellery
        • 💵 QB-StoreRobbery
        • 💦Rcore Integration
      • 🏗️Common Issues
    • 🔫Haptic-Ammunation
      • 📝Config
    • 💊Haptic-DrugEffects
Powered by GitBook
On this page
  1. Remastered Scripts
  2. 🛒 LC-Businesses
  3. ❄️ Fridges

Final Step

Now that we have created the shop we want, and the stash we want linked to the that Fridge, we now need to add it into the config.

Config.Fridges = {
    ["burgershot"] = {  -- MustBeUnique
        label = "Open Fridge",
        icon = "far fa-clipboard",
        menu_header = "| Burgershot Fridge |",
        stash_label = "Open Fridge",
        shop_label = "Order Stock",
        close_title = "⬅ Close Fridge",
        location = vector3(-1196.62, -901.34, 13.89),
        width = 1,
        depth = 1,
        heading = 347.75,
        minz = 13.6,
        maxz = 14.1,
        distance = 2,
        job = "burgershot",
        stash = Config.FridgeStashs["bs_fridge"], -- Make sure it exists in Config.FridgeStashs
        shop = "bs_shop" -- Make sure it exists in Config.FridgeShops
    },
}
PreviousFridge StashsNext📥 Trays

Last updated 1 year ago

😇