# Stash

```lua
{
    name = 'Demo Stash', -- unique name
    jobs = {
        police = 1, --job name and minimum rank
        sheriff = 1, --job name and minimum rank
    },

    --job check to open the bench
    jobs = {
        police = 0, --job name and minumum rank
        sheriff = 0
    },

    --gang check to open the shop
    gangs = {
        balles = 1, --gang name and minumum rank
        lostmc = 0,
    },

    private = true, -- is this a private stash
    maxWeight = 50000,
    slots = 50,
    
    --either use whitelist or blacklist. don't use both
    whitelist = {'water', 'bread'},
    blacklist = {'water', 'bread'},

    zones = {
        {
            coords = vector4(445.09, -975.05, 30.67, 0.0),
            size = vector3(2.5, 1.0, 1.5),
        },
    },
    target = {label = 'Demo Stash', icon = 'fa-vault', distance = 2.5},
    peds = { -- if empty then there will be no ped. Only polyzone with target
        'mp_m_waremech_01',
    },
    scenario = 'WORLD_HUMAN_COP_IDLES' -- if nil then ped will not play any scenario
},
```


---

# 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://docs.menanak47.com/esx/ak47_inventory/templates/stash.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.
