Skip to main content

⚙️ Production

Combination of items with which you can produce drugs

CamperProcess

Drug process options

config.lua

config.itemSettings = {
["meth"] = {
itemsNeeded = {
{
name = "acetone",
label = "Acetone",
amount = 1,
},
{
name = "lithium",
label = "Lithium Batteries",
amount = 1,
},
},
processesTo = {
name = "meth",
label = "Meth",
amount = 1,
},
processTime = 30.0, -- in seconds
},
["meth_sachet"] = {
itemsNeeded = {
{
name = "meth",
label = "Meth",
amount = 2,
},
{
name = "sachet",
label = "Sachet",
amount = 1,
},
},
processesTo = {
name = "meth_sachet",
label = "Meth Sachet",
amount = 1,
},
processTime = 15.0, -- in seconds
}
}