# 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="https://2626991479-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FigwOCDpWa8fY4Y2evDd4%2Fuploads%2FNgLSpddDx8PX23pAb1Ej%2Fimage.png?alt=media&#x26;token=cc277b14-0b72-4c3f-948f-163951c0d74f" 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.
