Setting up store
2
Create store
config.shops = {
enabled = true,
cinema = {
['newcinema_food'] = {
title = 'New Cinema',
items = {
{
item = 'popcorn',
label = 'Popcorn',
image = '../images/popcorn.png',
price = 5
},
{
item = 'cola',
label = 'Cola',
image = '../images/cola.png',
price = 10
}
}
}
},
locations = {
{ coords = vector3(0.0, 0.0, 0.0), distance = 2.0, config = 'newcinema_food' }
}
}Last updated