📬Supplies
Adding More SUPPLIES
Adding more
SUPPLIESis very simple via theconfig.luafileTo add more
SUPPLIESto the supplies menu that a bar can access you but you must pass thebarNameas the key for the event to determine which supplies list to populate based on thebarNamebeing passed
Config.Supplies = {
['Example Bar'] = { -- the barName 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