Arius Scripts
  • Resources
    • 🚘Arius Vehicleshop
      • ðŸ’ŧInstalation
      • 📰Configuration
      • ðŸŽĨPreview
    • ðŸ‘ŪArius Policejob
      • ðŸ’ŧInstallation
      • 📰Configuration
      • ðŸŽŊSuspect Interactions
      • 🔷Interactions
    • ðŸ’ļArius Billing
      • ðŸ’ŧInstallation
  • 🚑Arius Ambulancejob
    • ðŸ’ŧInstallation
    • 📰Configuration
      • ðŸĨAdd Hospitals
      • ðŸ‡ŦðŸ‡ēHospital Zone
      • ðŸ“ĶAdd Stashes
      • 🛒Add Shops
      • 🚗Add Garages
      • ðŸĶīAdd Injuries
    • ⚡Exports & Events
  • ðŸĶŒArius Hunting
    • ðŸ’ŧInstallation
    • 📰Configuration
      • ðŸŽŊTarget Setup
      • 🔓Aim Block
      • ⛹Campfire
      • ðŸđHunting Zones
Powered by GitBook
On this page
  1. Arius Hunting
  2. Configuration

Campfire

Last updated 1 year ago

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
    }
ðŸĶŒ
📰
⛹
https://github.com/Arius-Scripts/ars_hunting/blob/a84cca5f4d3bd8257a82d9b5f65c105c55572c39/shared/config.lua#L39C1-L68C2