# Auto Equip

You can add up unlimited items to auto equipped by the bot before they are rotating the farms.

{% embed url="<https://github.com/junssekut/saraItemDatabase/blob/main/ItemDatabase.lua>" %}
Item Database
{% endembed %}

#### Delayed Take

Enable this option so that your bot will have delay so they will not go into the specific world at the same time.

#### Branch Drop

If this option is enabled, then the bots will branch drop your items if it's in bulk.

#### Limit

{% hint style="info" %}
You can set the limit to 0 to make the world have no limitation.
{% endhint %}

This option is useful to set a limit per worlds you have. For example, if you set it's limit to 30 then for bot with the index 1-30 will use the first world, 31-60 will use the second world, etc.

#### Example Disabling Auto Equip

```lua
autoEquip = {}
```

#### Example Auto Equip

```lua
autoEquip = {
    { 
        item = 98, 
        delayedTake = true,
        branchDrop = true,
        limit = 30,
        storages = { 'sekutpickaxe1:pick', 'sekutpickaxe2:pick' } 
    }
}
```

#### Example Multiple Auto Equip

```lua
autoEquip = {
    { 
        item = 98, 
        delayedTake = true, 
        limit = 30, 
        storages = { 'sekutpickaxe1:pick', 'sekutpickaxe2:pick' } 
    },
    {
        item = 99,
        delayedTake = true,
        limit = 0,
        storages = { 'sekutpickaxe1:pick' }
    }
}
```


---

# 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://machseeman.gitbook.io/sarafarm/customizing-your-configuration/customizable-configuration/options/auto-equip.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.
