> For the complete documentation index, see [llms.txt](https://docs.menanak47.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.menanak47.com/multi-framework/ak47_inventory/guides/custom-stash.md).

# 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')
```
