Vending

{
    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
    },
},

Last updated