Config file

Config = {}

--[[ Language ]]--
Config.Locale = 'en'

--[[ Default Settings ]]
Config.Framework = {
    type = 'esx',                                       -- 1 - esx, 2 - qbcore.
    export = 'es_extended',                             -- Default exports - esx: [es_extended], qbcore: [qb-core].
}

--[[ Notifications ]]--
Config.Notify = 'ox' -- ox, esx, qb.
Config.NotifyType = {success = 'success', info = 'info', error = 'error'}
Config.Sounds = true

--[[ Skin Selector ]]--
Config.SkinSelector = 'fivem_appearance'            -- fivem_appearance        - https://forum.cfx.re/t/release-fivem-appearance/2438537.
                                                    -- illenium_appearance     - https://github.com/iLLeniumStudios/illenium-appearance.
                                                    -- esx_skin                - https://github.com/esx-framework/esx-legacy/tree/main/%5Besx%5D/esx_skin, https://github.com/esx-framework/esx-legacy/tree/main/%5Besx%5D/skinchanger.

--[[ Inventory ]]--
Config.Inventory = 'ox'                             --  ox            - https://github.com/overextended/ox_inventory.
                                                    --  qs            - https://buy.quasar-store.com/package/4770732.
                                                    --  qb            - https://github.com/qbcore-framework/qb-inventory.

--[[ Select your menu of choice ]]--
Config.SelectMenu = 'ui'                            -- commands            - No menu - Only Commands.
                                                    -- ui                  - Script UI.
                                                    -- ox                  - https://overextended.github.io/docs.
                                                    -- esx                 - https://github.com/esx-framework/esx-legacy/tree/main/%5Besx%5D/esx_menu_default.
Config.EnableUILabel = true                         -- Only for script UI
Config.Name = 'playerid'                            -- Player name showed in ui (player name etc.) - [steamname, playerid]

--[[ ProgressBar ]]--
Config.ProgressBar = 'ox'                           -- none           - No ProgressBar.
                                                    -- ox             - https://overextended.github.io/docs.
                                                    -- progressbars   - https://forum.cfx.re/t/release-progress-bars-1-0-standalone/526287/4.
                                                    -- qb             - https://github.com/qbcore-framework/progressbar.
                                                    -- qs             - https://github.com/quasar-scripts/progressbar
Config.ProgressBarDuration = 1                      -- Duration of the ProgressBar[In seconds].
Config.MaxTimeMultipleToDressUp = 5
Config.MaxUndressPlayerDistance = 5.0

--[[ Menu keybind ]]--
Config.KeyBindToOpen = 9 -- Keybind for opening clothing menu - Only works if Config.Keybind is true https://docs.fivem.net/docs/game-references/controls/.
Config.Command = 'clothingmenu' -- Command for opening clothing menu.

-- !!!!!!!!!!!!!!!!!!
Config.HasFivecodeArmor = false             -- IF YOU ARE USING OUR ARMOR WE ARE STRONGLY RECOMMEND TO ENABLE THIS
-- !!!!!!!!!!!!!!!!!!

--[[ Animations ]]
Config.FearAnimations = {
    {dict = 'anim@mp_corona_idles@male_d@idle_a', clip = 'idle_a'}
}
Config.OutfitAnimation = {dict = 're@construction', clip = 'out_of_breath'}
Config.StealAnimation = {dict = 're@construction', clip = 'out_of_breath'}

--[[ Commands and Default Clothing ]]--
Config.Commands = {
    Enable = true, -- If false these commands will be disabled.
    GiveClothing = 'giveclothing',  -- example: /giveclothing mask[MainType] 1[Type] 1[color].
    Commands = {
        Mask = {Command = 'mask', DefaultClothing = {male = 0, female = 0}},
        Helmet = {Command = 'helmet', DefaultClothing = {male = -1, female = -1}},
        Glasses = {Command = 'glasses', DefaultClothing = {male = -1, female = -1}},
        Ear = {Command = 'ear', DefaultClothing = {male = -1, female = -1}},
        Chain = {Command = 'chain', DefaultClothing = {male = 0, female = 0}},
        Watches = {Command = 'watches', DefaultClothing = {male = -1, female = -1}},
        Bracelet = {Command = 'bracelet', DefaultClothing = {male = -1, female = -1}},
        Tshirt = {Command = 'tshirt', DefaultClothing = {male = 15, female = 15}},
        Vest = {Command = 'vest', DefaultClothing = {male = 0, female = 0}},
        Jacket = {Command = 'jacket', DefaultClothing = {male = -1, female = 15}},
        Decals = {Command = 'decals', DefaultClothing = {male = 0, female = 0}},
        Bag = {Command = 'bag', DefaultClothing = {male = 0, female = 0}},
        Gloves = {Command = 'gloves', DefaultClothing ={male = 15, female = 15}},
        Pants = {Command = 'pants', DefaultClothing = {male = 14, female = 15}},
        Shoes = {Command = 'shoes', DefaultClothing = {male = 34, female = 35}},
    },
}

--[[ Set custom name and image to specific clothing ]]--
Config.CustomName = {
    {
        Label = 'Gucci Pants',
        Image = 'gucci_p',
        Type = 'pants',
        Ped = 'mp_m_freemode_01',
        Clothing = {
            Type = 17,
            Color = 3
        },
    },
    {
        Label = 'Pig mask',
        Type = 'mask',
        Ped = 'mp_m_freemode_01',
        Clothing = {
            Type = 1,
            Color = 2
        },
    },
}

Last updated