πŸ› οΈconfig_recipes.lua

Config.Recipes = {
    ["cocaine"] = { -- This is the TABLE TYPE from sv_hideouts.lua
        {
            item = "coke_baggy",
            amount = 1,
            time = 10,
            chance = 100,
            duration = 5000,
            min = 1,
            max = 3,
            requirements = {
                {
                    item = "tosti",
                    amount = 1,
                },
                {
                    item = "coke_baggy",
                    amount = 3,
                }
            }
        }
    },
    ["weed"] = {
        {
            item = "coke_baggy",
            amount = 1,
            time = 10,
            chance = 100,
            duration = 5000,
            min = 1,
            max = 3,
            requirements = {
                {
                    item = "tosti",
                    amount = 1,
                },
                {
                    item = "coke_baggy",
                    amount = 3,
                }
            }
        }
    },
    ["heroin"] = {
        {
            item = "coke_baggy",
            amount = 1,
            time = 10,
            chance = 100,
            duration = 5000,
            min = 1,
            max = 3,
            requirements = {
                {
                    item = "tosti",
                    amount = 1,
                },
                {
                    item = "coke_baggy",
                    amount = 3,
                }
            }
        }
    },
    ["meth"] = {
        {
            item = "coke_baggy",
            amount = 1,
            time = 10,
            chance = 100,
            duration = 5000,
            min = 1,
            max = 3,
            requirements = {
                {
                    item = "tosti",
                    amount = 1,
                },
                {
                    item = "coke_baggy",
                    amount = 3,
                }
            }
        }
    },
}

Last updated