⛹Campfire

Config.Campfire = {
    enable = true,
    campfireItem = "campfire",
    items = {
        {
            label = "Cooked meat",
            give = "cooked_meat",
            cookTime = 5, -- seconds
            require = {
                {
                    label = "Raw Meat",
                    quantity = 1,
                    item = "raw_meat",
                },
            }
        },
    }
}

How to add more items to cook

items = {
    {
        label = "Cooked meat",
        give = "cooked_meat",
        cookTime = 5, -- seconds
        require = {
            {
                label = "Raw Meat",
                quantity = 1,
                item = "raw_meat",
            },
        }
    },
    {
        label = "L Meat",
        give = "l_meat",
        cookTime = 5, -- seconds
        require = {
            {
                label = "Raw Meat",
                quantity = 1,
                item = "raw_meat",
            },
        }
    },
     -- add how many you want copy and paste
}

How to require more then 1 item to cook an item

    require = {
        {
            label = "Raw Meat",
            quantity = 1,
            item = "raw_meat",
        },
        {
            label = "Salt",
            quantity = 1,
            item = "salt",
        },
        -- add how many you want copy and paste
    }

Last updated