Installation
How do I install?

Stash
Last updated
How do I install?

Last updated
You can specify a stash limit.inventoryLimit = 100 -- How much inventory space will the motel have? [just for standalone inventory]Add the item you used on Config.metaitem to your item list.
By default it's motelkey.Change the Config.stashSettings. You can get reference below.["motelkey"] = {
["name"] = "motelkey",
["label"] = "Motel Key",
["weight"] = 0,
["type"] = "item",
["image"] = "motelkey.png",
["unique"] = true,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Motel Key"
},stashSettings = {
maxweight = 4000000,
slots = 500,
},You don't have to do this.
If you do, it will show the room number in the item information.}else if (itemData.name == 'motelkey') {
$(".item-info-title").html('<p>'+itemData.label+'</p>');
$(".item-info-description").html('<p>Motel Key: ' + itemData.info.motel + '</p>');Add the item you used on Config.metaitem to your item list.
By default it's motelkey.Change the Config.stashSettings. You can get reference below.['motelkey'] = {
label = 'Motel Key',
weight = 0.250,
stack = true,
close = true,
client = {export = 'mx-motels.motels:UseKey'}
},stashSettings = {
maxweight = 4000000,
slots = 500,
},Change the Config.stashSettings. You can get reference below.stashSettings = {
slots = 80,
weight = 50
},