# Custom Stash

```lua
--client side export. It will register the inventory if missing then opens
exports['ak47_inventory']:OpenInventory({
	identifier = 'stash:1234', 	--unique identifier
	label = 'Housing Stash', 	--any label
	type = 'stash',			--type stash
	maxWeight = 120000,		--max weight of the inventory
	slots = 50,			--max slot of the inventory
})

--if the stash is already registered
exports['ak47_inventory']:OpenInventory('stash:1234')
```


---

# 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/guides/custom-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.
