> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_drugs/features/labs-and-stations.md).

# Labs and Stations

Labs are the main production spaces. Stations are the places inside labs where players produce drugs or process items.

## 🧪 Lab Types

Default seed data includes:

| Lab type | Drug |
| -------- | ---- |
| `farm`   | Weed |
| `lab`    | Meth |
| `lockup` | Coke |

You can add or change lab templates in `/drugs_admin`.

## 🚪 Lab Entry

Lab entry uses one of these modes:

| Mode   | Description                                  |
| ------ | -------------------------------------------- |
| Marker | Players use an interaction marker.           |
| Target | Players use your configured target resource. |

Change this in `config.lua`:

```lua
Config.DrugLabEntryPoint = LAB_ENTRY.MARKER
```

## 🏭 Stations

Stations control where production happens inside a lab.

Station setup can include:

* position
* station index
* station type
* price
* tags
* camera position
* prop model
* prop placement

## 🌍 World Labs

World labs are labs placed outside IPL interiors.

Use `/drugs_admin` to create and configure them. Use `Config.WorldLab` to tune activation distance and polling speed.

## 🏷️ Station Tags

Tags decide what a station is used for. Examples from default data include:

| Tag                | Purpose                   |
| ------------------ | ------------------------- |
| `weed_farming`     | Weed growing station.     |
| `weed_packaging`   | Weed packaging station.   |
| `weed_brick_press` | Weed brick press station. |
| `meth_reaction`    | Meth reaction step.       |
| `meth_filtering`   | Meth filtering step.      |
| `coke_soaking`     | Coke soaking step.        |
| `coke_packaging`   | Coke packaging step.      |


---

# 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://documentation.rcore.cz/paid-resources/rcore_drugs/features/labs-and-stations.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.
