
📦Stashes
Adding More STASHES
Adding more stashes to the resource is very simple via the
config.luafileYou 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
keyand the name of your stash as thevalueto theSTASHESSection inConfig.CoreSettingsYou 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
},
},
},The ShopName MUST match throughout the config file for the script to function correctly and allow that specific job to access the stashes
Whatever you set as your ShopName must be the exact same throughout the rest of the config file. If you are ever in doubt or come across issues result back to a default name
for example 'widow' instead of 'White Widow'
Last updated