> For the complete documentation index, see [llms.txt](https://machseeman.gitbook.io/sarafarm/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://machseeman.gitbook.io/sarafarm/customizing-your-configuration/bots-configuration/storage.md).

# Storage

You must specify your storage world in order for the script to work correctly.

{% hint style="info" %}
If the storage is multi world, then the bot will choose randomly from the list from time to time.
{% endhint %}

{% hint style="info" %}
The format for storage world is world:id
{% endhint %}

#### Example Storage

```lua
storage = {
    seed = { 'sekutseed1:seed' },
    pack = { 'sekutpack1:pack' }
}
```

#### Example Multi Storage

```lua
storage = {
    seed = { 'sekutseed1:seed', 'sekutseed2:seed' },
    pack = { 'sekutpack1:pack', 'sekutpack2:pack' }
}
```

#### Example URL Worlds

{% hint style="warning" %}
Using worlds via URL is needed to be in **RAW** format.
{% endhint %}

<figure><img src="https://3846087377-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fbj3VIDZ6fpDdHdSJi7Mr%2Fuploads%2FYU80TzYkSmQkSbIx8HvV%2FURL%20Seed.png?alt=media&amp;token=16497b40-9ae4-49b9-adfb-8b514443b71c" alt=""><figcaption><p>Example URL Storage Seed</p></figcaption></figure>

<figure><img src="https://3846087377-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fbj3VIDZ6fpDdHdSJi7Mr%2Fuploads%2FAIbP2fKLGSDcyiBxAC3y%2FURL%20Pack.png?alt=media&amp;token=7493c908-1a17-4710-89b9-55f72a7c29c8" alt=""><figcaption><p>Example URL Storage Pack</p></figcaption></figure>

```lua
storage = {
    seed = 'https://rentry.org/exsaraFarmStorageSeed/raw',
    pack = 'https://rentry.org/exsaraFarmStoragePack/raw'
}
```
