Configuration Guide

Welcome to the configuration section of Drugs V: Laboratories! This page will guide you through setting up and customizing the script to fit your server's needs.

Weed Lab

gathering = {
    requiredItems = { -- Required items to start the gathering process
        ["plant_spray"] = 1,
    },
    removeItem = false, -- Remove the required items after the process
    coords = {
        { 
            coords = vector3(1057.61, -3196.85, -39.16), 
            offset = vector3(-0.9, 0.1, -1.18), 
            rotation = vector3(0.0, 0.0, 90.0) 
        },
        { 
            coords = vector3(1060.54, -3193.35, -39.16), 
            offset = vector3(-0.9, 0.1, -1.18), 
            rotation = vector3(0.0, 0.0, 180.0) 
        },
        { 
            coords = vector3(1056.25, -3192.8, -39.16), 
            offset = vector3(-0.9, 0.1, -1.18), 
            rotation = vector3(0.0, 0.0, 270.0) 
        },
        { 
            coords = vector3(1053.94, -3195.96, -39.16), 
            offset = vector3(-0.9, 0.1, -1.18), 
            rotation = vector3(0.0, 0.0, 0.0) 
        },
    },
    itemName = "weed_bud", -- Item name to add to the player inventory
    itemCount = 1, -- Item count to add to the player inventory
},
packing = {
    requiredItems = { -- Required items to start the pack process
        ["weed_bud"] = 1,
        ["empty_package"] = 1,
    },
    removeItem = true, -- Remove the required items after the process
    coords = {
        { 
            coords = vector3(1039.2, -3205.11, -38.17), 
            offset = vector3(-0.76, 0.87, -0.98), 
            rotation = vector3(0.0, 0.0, 90.0) 
        },
        { 
            coords = vector3(1037.52, -3205.37, -38.17), 
            offset = vector3(0.76, 0.70, -0.98), 
            rotation = vector3(0.0, 0.0, -90.0) 
        },
        { 
            coords = vector3(1034.67, -3205.44, -38.17), 
            offset = vector3(-0.76, 0.87, -0.98), 
            rotation = vector3(0.0, 0.0, 90.0) 
        },
        { 
            coords = vector3(1032.95, -3205.49, -38.17), 
            offset = vector3(0.76, 0.70, -0.98), 
            rotation = vector3(0.0, 0.0, -90.0) 
        },
        { 
            coords = vector3(1034.15, -3203.81, -38.17), 
            offset = vector3(-0.65, 0.79, -0.98), 
            rotation = vector3(0.0, 0.0, 0.0) 
        },
    },
    itemName = "weed_packed", -- Item name to add to the player inventory
    itemCount = 1 -- Item count to add to the player inventory
},

Meth Lab

Coke Lab

Acid Lab

Main

Last updated