Var FiveM
ScriptsPaketeAbonnementsDoku
VAR
Var FiveM
ScriptsPaketeAbonnementsDoku
Theme-AnpassungUber unsKontakt
Jetzt kaufen

-- 28 sections

  • ›paintball
    • configuration
    • features
    • anti-cheat-integration
    • game-modes
    • api
    • arenas
    • command
    • config
  • ›chess
    • configuration
    • events
    • integration-example
    • exports
    • controls
    • config
  • ›supermarket simulator
    • configuration
    • catalog-manager
    • commands-and-permissions
    • props-editors
    • owning-and-running-a-store
    • config
  • ›coins shop
    • configuration
    • identifier
    • export
    • server-event
    • languages
    • products
    • delivery
    • owner-panel
    • webhooks-discord
  • ›clothes shop
    • installation
    • configuration
    • blips-marker
    • translate
    • change-cam-and-pos
  • ›casino
    • installation
    • configuration
    • main-config
    • horse
    • lucky-whell
    • translate
  • ›drugs
    • installation
    • configuration
    • labs-and-interiors
    • maintenance-and-modules
    • missions
    • street-selling
    • administration
  • ›clothes shop v2
    • installation
    • configuration
    • position
    • advice-and-troubleshooting
    • configure-clothing-shops
  • ›interaction
    • configuration
    • public-api
    • interaction-config-reference
    • dialog-system
  • ›emote
    • configuration
    • config
    • adding-emote
    • menu
    • keybind
    • modules
    • 3d-placement
    • playlist
    • wheel
    • shared-emotes
  • ›crew
    • installation
    • export
  • ›alert job
    • installation
    • server-export
  • ›pin code
    • installation
    • export
  • ›society manager
    • installation
    • export
    • configuration
    • translate
    • max-salary
    • last-invoice
  • ›property
    • installation
    • configuration
    • translate
    • add-interior
  • ›barber shop
    • installation
    • configuration
    • change-menu-open-source
    • blips
    • translate
    • add-shop
  • ›shop with basket
    • installation
    • configuration
    • item-category-config
    • blips-marker
    • translate
    • add-shop
  • ›tattoo shop
    • installation
    • configuration
    • edit-tattoo
    • blips-marker
    • translate
    • add-shop
  • ›gardener job
    • installation
    • configuration
    • change-pos-farm
    • blips
    • translate
  • ›heist atm
    • installation
    • configuration
    • event-money
    • translate
    • police-alert
  • ›heist fleeca
    • installation
    • configuration
    • translate
    • pos-fleeca-heist
  • ›poster job
    • installation
    • configuration
    • change-pos-farm
    • change-poster-texture
    • blips-marker
    • translate
  • ›loading screen
    • installation
    • configuration
  • ›bank
    • installation
    • configuration
    • position
    • blips
    • translate
    • society
  • ›autocardealer
    • installation
    • configuration
    • add-vehicles
    • translate
    • blips
    • coords
  • ›character creator
    • installation
    • configuration
    • translate
    • expression
    • spawn
  • ›multi character
    • installation
    • configuration
    • translate
    • change-character-creator
    • commands
  • ›bill
    • installation
    • configuration
    • translate
    • control

~/docs/drugs/configuration/labs-and-interiors

drugs docs›
  • installation
  • configuration
  • configuration/labs-and-interiors
  • configuration/maintenance-and-modules
  • configuration/missions
  • configuration/street-selling
  • configuration/administration

Drugs

Labs And Interiors

-- 2 code blocks · 1 min read

get var-drugstry it on the test server
  • Positions, harvest zones, processing areas, and computers defined for each drug type
lua
DrugsHandler.Interiors = {
    ["Meth"] = {
        Position = {
            pos = vector3(997.54, -3200.58, -36.393),
            heading = 274.55
        },
        Harvest = {
            {pos = vector3(1005.80, -3200.40, -38.90)}
        },
        Treatment = vector3(1011.80, -3194.90, -38.99),
        Computer = vector3(1001.97, -3195.11, -38.99)
    },
    ["Cannabis"] = {
        Position = {
            pos = vector3(1065.97, -3183.45, -39.16),
            heading = 95.18
        },
        Harvest = {
            {pos = vector3(1051.658, -3196.057, -39.12837)},
            {pos = vector3(1051.605, -3190.533, -39.13086)},
            {pos = vector3(1056.194, -3189.949, -39.10868)},
            {pos = vector3(1062.883, -3193.293, -39.12915)},
            {pos = vector3(1063.073, -3198.179, -39.11026)},
            {pos = vector3(1063.658, -3204.737, -39.1482)},
            {pos = vector3(1057.423, -3205.962, -39.12839)},
            {pos = vector3(1057.647, -3199.784, -39.10919)},
            {pos = vector3(1051.781, -3205.776, -39.13504)}
        },
        Treatment = vector3(1039.759, -3204.596, -38.15),
        Computer = vector3(1044.22, -3194.85, -38.15)
    },
    ["Cocaine"] = {
        Position = {
            pos = vector3(1088.67, -3187.83, -38.99),
            heading = 180.90
        },
        Harvest = {
            {pos = vector3(1090.54, -3196.65, -38.99)},
            {pos = vector3(1093.09, -3196.59, -38.99)},
            {pos = vector3(1095.34, -3196.65, -38.99)},
            {pos = vector3(1099.62, -3194.41, -38.99)},
            {pos = vector3(1101.75, -3193.77, -38.99)}
        },
        Treatment = vector3(1101.245, -3198.82, -39.60),
        Computer = vector3(1087.40, -3194.17, -38.99)
    }
}
  • Upgrade system : interior improvements, additional cannabis chairs, etc.
lua
DrugsHandler.Upgrades = {
    ["Meth"] = {
        ["interior"] = {
            {
                name = Shared.Locales.Advanced,
                value = "upgrade", -- This is the value that will be sent to the server when the upgrade is applied
                price = 500000,
                desc = Shared.Locales.UpgradeInteriorMeth
            }
        }
    },
    ["Cannabis"] = {
        ["interior"] = {
            {
                name = Shared.Locales.Advanced,
                value = "upgrade",
                price = 350000,
                desc = Shared.Locales.UpgradeInteriorCannabis
            }
        },
        ["details"] = {
            {
                name = Shared.Locales.Chair,
                value = "weed_chairs",
                price = 22500,
                desc = Shared.Locales.UpgradeWeedChairs
            }
        }
    },
    ["Cocaine"] = {
        ["interior"] = {
            {
                name = Shared.Locales.Advanced,
                value = "upgrade",
                price = 450000,
                desc = Shared.Locales.UpgradeInteriorCocaine
            }
        }
    }
}
previousconfigurationnextmaintenance-and-modules
VAR
Var FiveM

Premium FiveM Scripts. Low Resmon, hohe Qualitat. Fur ESX, QBCore & Standalone.

28Skripte
1,500+Verkaufe

Scripts

  • Marketplace
  • Pakete
  • Abonnements
  • Theme-Anpassung

Beliebteste

  • Supermarket Simulator
  • FiveM Casino Script
  • FiveM Coin Shop
  • FiveM Emote Menu
  • FiveM Paintball Script

Ressourcen

  • Free Scripts
  • Guides
  • Dokumentation
  • Support

Unternehmen

  • Uber uns
  • Kontakt
  • Discord

Rechtliches

  • AGB
  • Datenschutz
  • Erstattungen

© 2026 Var FiveM. Alle Verkaufe sind endgultig.

Zahlungen uberTebex