๐Ÿ“–[ESX] Config Files

Please read before purchase to under full functionality of our script

ESX Config
Config = {}

Config.framework_core = { esx = 'es_extended', qb = 'qb-core'}

Config.Debug = false -- to enable extra information help in fixing errors

-- ComponentsId = 1,        -- mask
-- ComponentsId = 2,        -- torso
-- ComponentsId = 3,        -- pants
-- ComponentsId = 4,        -- bags
-- ComponentsId = 5,        -- shoes
-- ComponentsId = 6,        -- undershirt
-- ComponentsId = 7,        -- armor
-- ComponentsId = 8,       -- decals
-- ComponentsId = 9,       -- hats
-- ComponentsId = 10,       --glasses
-- ComponentsId = 11,       -- watches
-- ComponentsId = 12,       -- braclets
-- ComponentsId = 13,       -- ear

-- Here you can add more lashes to the menu
Config.Lashes = {
    ComponentId = 7, -- not touching
    Numbers = {
        --  { id = clotheid, max = maximumtexture},
        {id = 1, max = 4},
        {id = 2, max = 4},
        {id = 3, max = 4},
        {id = 4, max = 4}, 
        {id = 5, max = 4},
        {id = 6, max = 4},
        {id = 7, max = 4},
        {id = 11, max = 4},
        {id = 12, max = 4},
        {id = 13, max = 4},
        {id = 14, max = 1},
        {id = 15, max = 1},
        {id = 33, max = 0}

    }
}

Config.Access = {
    command = 'openlashesmenu',
    key = 'F6'
}

Config.Saloons = {
    -- you can see both example are pretty simple
    [1] = {
        -- shop under job example
        blip = { enable = true, title = 'Lashes Saloon', coords = vector3(117.0506, -1340.3600, 29.4154), Sprite = 280, color = 48, scale = 1.0 },
        job = { job_name = 'lashes', boss_menu = vector3(125.5329, -1332.4996, 29.4132) }, 
    },
    [2] = {
        -- automatic shop example {without any kind of job}
        blip = { enable = true, title = 'Lashes Saloon', coords = vector3(117.0506, -1340.3600, 29.4154), Sprite = 280, color = 48, scale = 1.0 },
        shop = { price = 5000, shop_menu = vector3(121.1909, -1336.0529, 29.4142)}
    },
}
 
-- Draw marker types
Config.DrawMarker = {
    type = 20,
    size = {0.3, 0.3, 0.3},
    rgb = {0, 255, 0}
}

-- Time animation in miliseconds
Config.Animation = {
    Dict = 'anim@amb@clubhouse@tutorial@bkr_tut_ig3@',
    Anim = 'machinic_loop_mechandplayer',
    TimeAnimation = 3000
}
 
Config.ClothingMenu = {
    -- recommened to make it true but incase in Config.Debug in F8 you don't see correct name of clothing menu then make it false and writing clothing name bottom 
    auto_detect = true,
    -- manual_input only work if auto_detect = false
    manual_input = 'fivem-appearance' -- can be 'fivem-appearance' or 'onex-creation' or 'illenium-appearance' or 'qb-clothing' or 'skinchanger'
}

Last updated