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
  3. Features Guide

Lab equipment

PreviousCreatorNextSupplies gathering

Last updated 6 months ago

Inside your lab computer, buy the DOKIA PHONE item. By using the item, the phone will appear in your screen. Then, scroll down with your keyboard arrows to the equipment section.

After calling, you will receive a location when you can get the delivery of your equipment then deliver it back to the lab you want to equip.

Equipment settings

Config.Equipements = {       -- Equipments for the labs that you call from the dokia phone
    pedCoords = vector4(965.57, -3085.51, 5.9, 261.8), -- Ped coords
    containerCoords = vector4(958.6139, -3088.0815, 4.3371, 90.4399), -- Container coords
    containerPolyCoords = vector3(961.0923, -3087.9480, 5.9008), -- Container interaction point coords
    ForkliftCoords = vector3(965.4608, -3125.7117, 5.3528), -- Forklift coords
    MuleCoords = vector3(969.6259, -3127.1943, 6.1327), -- Mule coords
    MuleCoordsInt = vector3(969.5834, -3132.6577, 5.3398), -- Mule interaction point coords
    timeAfterDeletingContainer = 1000*60*15, -- Time after deleting the container in miliseconds
    catalogue = { -- Catalogue of the equipments
        ["meth"] = {
            drug = "meth", -- Drug of the equipment
            title = "METH LAB EQUIPMENTS", -- Title of the equipment
            price = 5000, -- Price of the equipment
            description = "This will fully equip your lab to produce pure methamphetamine. This contains all the                     necessary equipment to cook meth.", -- Description of the equipment
        },
        ["coke"] = {
            drug = "coke",
            title = "COCAINE LAB EQUIPMENTS",
            price = 5000,
            description = "This will fully equip your lab to produce pure cocaine. This contains all the necessary equipment to cook cocaine.",
        },
        ["weed"] = {
            drug = "weed",
            title = "WEED LAB EQUIPMENTS",
            price = 5000,
            description = "This will fully equip your lab to produce pure weed. This contains all the necessary equipment to grow weed.",
        },
    }
}

After equipping your lab, then you can start working on your drugs.