
π¦Stashes
Adding more stashes to the resource is very simple via the
config.luafileYou must ensure the key matches the job you wish to allow stash access to
To add another stash simply add your pharmacy 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 Pharmacy'] = {
StorageShelf = {
label = 'Example Pharmacy 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 Pharmacy 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 Pharmacy 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 Pharmacy 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