local objectsInShop = getAllObjectFromPlayersShopId(shopId)
{
[64] = {
["name"] = "beer",
["price"] = 5,
["type"] = "item",
["quantity"] = 1,
["label"] = "Beer",
["method"] = "buy", -- Player can buy the item
["id"] = 64,
},
[65] = {
["name"] = "weed_seed",
["price"] = 555,
["type"] = "item",
["quantity"] = 5,
["label"] = "Weed Seed",
["method"] = "sell", -- Player can sell the item
["id"] = 65,
},
[63] = {
["name"] = "accesscard",
["price"] = 5,
["type"] = "item",
["quantity"] = 1,
["label"] = "Access Card",
["method"] = "buy", -- Player can buy the item
["id"] = 63,
},
}
Where to insert the code?