Pluto Development
  • Pluto Development Documentation
  • Information
    • FiveM Asset Escrow System
    • How to update your resource
  • Scripts
    • Compatibility
    • Drug Labs
      • Installation
      • Basic Configuration
      • Features Guide
        • Creator
        • Lab equipment
        • Supplies gathering
        • Meth Producing
        • Coke Producing
        • Weed Producing
    • Squid Game Dalgona
      • Installation
      • Basic Configuration
    • Squid Game Mingle
      • Installation
      • Basic Configuration
      • Commands
    • SAMP Chat
      • Installation
Powered by GitBook
On this page
  1. Scripts
  2. Drug Labs
  3. Features Guide

Coke Producing

Config.CokeCooking = {       -- Settings for the coke cooking
    FumeInterval = 1000*60*5, -- For every interval, the fume level will decrease by the FumeDecrease amount
    FumeDecrease = 5, -- Fume level decrease amount
    Grinding = { -- Grinding settings
        remove = {},
        add = {
            {name = "coca_leaf_powder", min = 5, max = 10},
        },
        duration = 5000, -- Duration of the grinding
        fume = 10 -- Fume amount that gets added to the lab
    },
    Barrel = { -- Barrel settings
        ['add_coca_leaves'] = { -- Adding coca leaves
            remove = { -- Items to remove
                {name = "coca_leaf_powder", amount = 10},
            },
            duration = 10000 -- Duration of the adding coca leaves
        },
        ['add_gasoline'] = { -- Adding gasoline
            remove = { -- Items to remove
                {name = "weapon_petrolcan", amount = 1},
            },
            duration = 10000 -- Duration of the adding gasoline
        },
        ['add_water'] = { -- Adding water
            remove = { -- Items to remove
                {name = "water_lab_bottle", amount = 1},
            },
            duration = 10000 -- Duration of the adding water
        },
        ['mixing'] = { -- Mixing settings
            duration = 10000, -- Duration of the mixing
            add = { -- Items to add
                {name = "coca_gaso_infused", amount = 10},
            },
            fume = 10
        }
    },
    Microwave = { -- Microwave settings
        remove = { -- Items to remove   
            {name = "coca_gaso_infused", amount = 5},
        },
        add = {
            {name = "coca_infused_liquid",amount = 3},
        },
        duration = 10000, -- Duration of the heating
        heat = { -- Heat settings
            min = 90,
            max = 130,
            duration = 10000
        },
        fume = 10
    },
    Filter = { -- Filter settings
            remove = { -- Items to remove
            {name = "coca_infused_liquid", amount = 5},
        },
        add = {
            {name = "coke_brick",amount = 5},
        },
        duration = 10000, -- Duration of the heating
        heat = { -- Heat settings
            min = 90,
            max = 130,
            duration = 10000
        },
        fume = 10
    },
    Tables = { -- Coke brick processing tables (do not change only adjust for animation purposes)
        {coords = vector4(1090.3427, -3196.5693, -38.9935, 5.8229)},
        {coords = vector4(1092.8979, -3194.9048, -38.9935, 179.6015)},
        {coords = vector4(1095.3961, -3194.9146, -38.9935, 181.9359)},
        {coords = vector4(1099.5439, -3194.1521, -38.9935, 92.5176)},
    },
    Unpacking = { -- Unpacking settings
        remove = { -- Items to remove
            {name = "coke_brick", amount = 5},
        },
        duration = 10000
    },
    Processing = { -- Processing settings
        add = { -- Items to add
            {name = "coca_powder", amount = 10},
        },
        duration = 15000
    },
    Bagging = { -- Bagging settings
        coords = vector4(1100.7322, -3199.7351, -39.0, 181.1790), -- Coords of the interaction point
        posCoords = vector3(1101.245, -3198.82, -39.60), -- Coords of the interaction point
        remove = { -- Items to remove
            {name = "coca_powder", amount = 5},
        },
        add = {
            {name = "coke_baggy", amount = 10},
        }
    }
}
PreviousMeth ProducingNextWeed Producing

Last updated 6 months ago