Page cover

πŸ“¦Stashes

  • Adding more stashes to the resource is very simple via the config.lua file

  • You must ensure the ShopName key matches the job you wish to allow stash access to

  • To add another stash simply add your shop name as they key and the name of your stash as the value to the STASHES Section in Config.CoreSettings

  • You can change stash labels, slot count, weight and minimum grades required to access that stash (for boss stashes)


Stashes = {
    ['Example Shop'] = {
        StorageShelf = { 
            label = 'Example Shop Storage Shelf 1', -- label of stash
            slots = 64, weight = 1000000000, --max slots and max weight of stash
            minGrade = 0, -- minimum job grade required to access stash
        },
        StorageShelf2 = { 
            label = 'Example Shop Storage Shelf 2', -- label of stash
            slots = 64, weight = 1000000000, --max slots and max weight of stash
            minGrade = 0, -- minimum job grade required to access stash
        },
        BossStash = { 
            label = 'Example Shop Boss Storage', -- label of stash
            slots = 128, weight = 1000000000, --max slots and max weight of stash
            minGrade = 3, -- minimum job grade required to access stash
        },
        CollectionTray = { 
            label = 'Example Shop Colection Tray', -- label of stash
            slots = 5, weight = 1000000, --max slots and max weight of stash
            minGrade = 0, -- minimum job grade required to access stash for a collection tray make sure this is always 0
        },
    },
},

Last updated