π¬Supplies
Adding More SUPPLIES
Adding more
SUPPLIES
is very simple via theconfig.lua
fileTo add more
SUPPLIES
to the supplies menu that a shop can access you but you must pass theshopName
as the key for the event to determine which supplies list to populate based on theshopName
being passed
Config.Supplies = {
['Example Shop'] = { -- the shopName must be the key
{
name = 'exampleitem1', -- the item name in your items.lua
label = 'An Example Item', -- the item label for the menu
},
{
name = 'exampleitem2', -- the item name in your items.lua
label = 'Another Example Item', -- the item label for the menu
},
},
}
Last updated