> For the complete documentation index, see [llms.txt](https://pluto-dev.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pluto-dev.gitbook.io/docs/scripts/drug-labs/features-guide/lab-equipment.md).

# Lab equipment

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.

<figure><img src="/files/sZMp9yljugPvD8MlK0Vm" alt="" width="194"><figcaption></figcaption></figure>

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

<pre class="language-lua" data-full-width="true"><code class="lang-lua">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
<strong>            description = "This will fully equip your lab to produce pure methamphetamine. This contains all the                     necessary equipment to cook meth.", -- Description of the equipment
</strong>        },
        ["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.",
        },
    }
}
</code></pre>

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