Basic Configuration

In order for the script to work propertly, you to do some basic configuration such as specifying your framework.

Framework

Config.Framework = "qb"     -- esx or qb or qbox

Creator

Config.Creator = {          
    Command = "clab",       -- Command to create the lab
    Job = "realestate",     -- Job of the creator
}

Blips

Config.Blips = {            -- Blips settings for lab owners
    Enabled = true,         -- blips will show for owned labs only
    ["meth"] = {
        sprite = 51,        -- https://docs.fivem.net/docs/game-references/blips/
        scale = 0.8,        -- size of the blip
    },
    ["coke"] = {
        sprite = 51,
        scale = 0.8,
    },
    ["weed"] = {
        sprite = 140,
        scale = 0.8,
    },
}

Last updated