Page cover

πŸ“¬Supplies

  • Adding more SUPPLIES is very simple via the config.lua file

  • To add more SUPPLIES to the supplies menu that a bar can access you but you must pass the barName as the key for the event to determine which supplies list to populate based on the barName being 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