> 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.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pluto-dev.gitbook.io/docs/scripts/drug-labs/features-guide/lab-equipment.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
