# Configuration

## Actions

Lockmsith businesses have the ability to create locks, remove them, delete them, edit them, change them and of course make keys and cards. Most interactions are in the portable `/locksmith` menu or via the target when you hover the third eye on the door. Here is configuration for it.

```lua
Actions = {                -- Actions for business
    Command = 'locksmith', -- Command for business actions
    Target = {
        Icon = 'fas fa-hammer',
        Distance = 2.5,
    }
},
```

## Models

Businesses also includes NPC to manage the business with insight into how it all works and for boss actions. You can change the model and entities as well.

```lua
CraftingTable = {                   -- Crafting table settings
    Model = `prop_tool_bench02_ld`, -- Model for crafting table
    Type = 3,                       -- Entity type for crafting table [1 = PED, 3, OBJECT]
    Target = {
        Icon = 'fas fa-hammer',
        Distance = 2.5,
    }
},
BossActions = {
    Model = `s_m_m_cntrybar_01`,
    Type = 1,
    Target = {
        Icon = 'fas fa-hammer',
        Distance = 2.5,
    }
},
```

But let's take a look on example of locksmith job.


---

# 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://documentation.rcore.cz/paid-resources/rcore_doorlock/business/config.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.
