Page cover

πŸ‘•Outfits

You can easily add custom outfits by defining the item name and relevant information required in Config.Outfits

You can set restrictions for outfits the same as you can with shops through job or gang restrictions


  • The key is the item name and must be in your items.lua

['my_custom_outfit1'] = { -- the key is the useable item name that applies the outfit define below
    --
},

  • Each outfit has its own progress circle data

  • Duration is the length of time to use the item

  • Label is the progress circle label

  • Define animation settings

  • Dict is the animation dictionary name

  • Clip is the animation name

  • Flag is the animation flag

['my_custom_outfit1'] = { -- the key is the useable item name that applies the outfit define below
    progress = { -- define progressCircle settings
        duration = 5000, -- duration
        label = 'Changing outfit', -- label
        anim = { -- animation settings
            dict = 'clothingshirt', -- anim dict
            clip = 'try_shirt_positive_d', -- anim name
            flag = 41, -- anim flag
        },
    },
    --
},

  • If required define restrictions through job or gangs for each outfit

  • Set enabled to true to use the restriction and then define that job or gang name

  • Ensure the job or gang exists in your jobs.lua or gangs.lua files


  • Define outfit data for male and female clothing

  • If using custom clothing ensure the slots and textures defined match that of your clothing menu


  • Below is what a finished config should look like for a custom outfit item with no job or gang restrictions

Last updated