Pluto Development
  • Pluto Development Documentation
  • Information
    • FiveM Asset Escrow System
    • How to update your resource
  • Scripts
    • Compatibility
    • Drug Labs
      • Installation
      • Basic Configuration
      • Features Guide
        • Creator
        • Lab equipment
        • Supplies gathering
        • Meth Producing
        • Coke Producing
        • Weed Producing
    • Squid Game Dalgona
      • Installation
      • Basic Configuration
    • Squid Game Mingle
      • Installation
      • Basic Configuration
      • Commands
    • SAMP Chat
      • Installation
Powered by GitBook
On this page
  1. Scripts
  2. Drug Labs

Basic Configuration

In order for the script to work propertly, you to do some basic configuration such as specifying your framework.

Framework

Config.Framework = "qb"     -- esx or qb or qbox

Creator

Config.Creator = {          
    Command = "clab",       -- Command to create the lab
    Job = "realestate",     -- Job of the creator
}

Blips

Config.Blips = {            -- Blips settings for lab owners
    Enabled = true,         -- blips will show for owned labs only
    ["meth"] = {
        sprite = 51,        -- https://docs.fivem.net/docs/game-references/blips/
        scale = 0.8,        -- size of the blip
    },
    ["coke"] = {
        sprite = 51,
        scale = 0.8,
    },
    ["weed"] = {
        sprite = 140,
        scale = 0.8,
    },
}

PreviousInstallationNextFeatures Guide

Last updated 6 months ago