> 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/templates/vending.md).

# Vending

```lua
{
    name = "Deliciously Infectious", -- unique name
    model = `prop_vend_soda_01`, --prop model
    account = 'cash', --cash, bank, black_money
    target = {label = 'Deliciously Infectious', icon = 'fa-shop', distance = 2.0},
    items = {
        {item = "water", buyPrice = 10, sellPrice = 5, stock = 10}, -- buy, sell & stock enabled
        {item = "water", buyPrice = 10, sellPrice = 5}, -- buy, sell enabled
        {item = "water", buyPrice = 10}, -- buy enabled
        {item = "water", sellPrice = 10}, -- sell enabled
    },
},
```
