# Basic Configuration

In order for the script to work propertly, you to do some basic configuration such as specifying your framework.

#### Framework

```lua
Config.Framework = "qb"     -- esx or qb or qbox
```

#### Creator

```lua
Config.Creator = {          
    Command = "clab",       -- Command to create the lab
    Job = "realestate",     -- Job of the creator
}
```

#### Blips

```lua
Config.Blips = {            -- Blips settings for lab owners
    Enabled = true,         -- blips will show for owned labs only
    ["meth"] = {
        sprite = 51,        -- https://docs.fivem.net/docs/game-references/blips/
        scale = 0.8,        -- size of the blip
    },
    ["coke"] = {
        sprite = 51,
        scale = 0.8,
    },
    ["weed"] = {
        sprite = 140,
        scale = 0.8,
    },
}
```


---

# Agent Instructions: 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/basic-configuration.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.
