Don't Starve Together

Don't Starve Together

Storeroom (New)
145 Comments
白井流 16 Oct @ 7:38am 
没建造选项了?
Alopecus 8 Oct @ 7:31am 
Hello. I've been playing with this mod for 120 in-game days. Now, when I open the storeroom, the server disconnects.
为什么我放在地窖的东西会掉新鲜度
卖小女孩的火柴 17 Sep @ 8:52pm 
新建的木箱子,再打开这个地窖立马insight就会崩溃 啥情况
xuanhu 3 Sep @ 10:56am 
嗯 实测可以通过把东西全腾出来取消订阅之后重新订阅来解决,但代价有点大,要是长期档可能还是考虑等修复或者换个模组吧。
xuanhu 3 Sep @ 10:36am 
好像不是MOD冲突,所有MOD我都测了一遍,新开档一样的模组但是正常,可能是偶发性问题,但是坏掉的档哪怕新造的地窖还是会出现退出重进就乱掉,但新档的话就正常。
xuanhu 3 Sep @ 9:31am 
额 我和楼上一样,退出重进东西就全乱了,是哪个MOD冲突了有头绪了吗?
傳說󰀘覺悟  [author] 28 Aug @ 12:29pm 
本来就不整理物品,是你其他模组搞的事情
Back , come back ! 28 Aug @ 4:15am 
求求你了
Back , come back ! 28 Aug @ 4:15am 
说简单点,就是退出游戏的时候不要自动整理物品位置,而是保持原有的物品位置不变
Back , come back ! 28 Aug @ 3:01am 
请问有没有办法让地窖保存所放的物品位置 ? 就是每个物品都放在一个位置好好的,保存退出游戏后,再进游戏,地窖里面的物品会乱摆放,强迫症看着有点难受
微星幻影 26 Aug @ 10:48am 
在制作栏找不到这个储藏室啊
傳說󰀘覺悟  [author] 26 Aug @ 12:12am 
你的多格装备栏的问题,不是本模组的问题
菜在这里 26 Aug @ 12:10am 
放在地窖里的东西没办法直接用,必须要拿出来放到物品栏才能用,不知道是不是出问题了,可以麻烦作者大大看一下嘛
阿祖不收手 25 Aug @ 1:52am 
为啥我老是打开这个地窖的时候崩溃捏
树叶的光 4 Aug @ 10:24pm 
这个地窖在哪里找到 找不到
lindagamerx 4 Aug @ 8:58pm 
wow
YUUUSHU 29 Jul @ 12:41am 
请问可不可以设置成自选新/旧模型?喜欢原版的地窖贴图:steamhappy:
aa云淡风轻aa 7 Jun @ 11:20pm 
然后当着我面吃了
aa云淡风轻aa 7 Jun @ 11:20pm 
佬,改成只玩家破坏,那个水獭还是可以偷东西,今天刚被偷了个象鼻
EldVarg 17 May @ 12:26am 
Or you could make 2 different buildings, one with each sprite? (But everything else equal, or have a small and a bigger version).

Other ideas:
* Would be nice if the sort function also sorted the durability of items, so 100% comes first and descending.
* Be able to expand the storage later on - costly.
* Parts or all slots to have 999 storage, or infinite like the Tall Chests. Optional!
* Just part of the slots be refrigerator.
* An advanced version/option would be to have the building in 2 steps. First creates a hole, that you have to dig multiple times for it to be dig out. After that you add another building on top.
傳說󰀘覺悟  [author] 9 May @ 12:27am 
@EldVarg I'm thinking about making multiple skins, but I haven't figured out how to add them yet
EldVarg 8 May @ 11:07pm 
Thanks for keeping this mod up to date! :)
EldVarg 8 May @ 1:26am 
Would be great to have option to use the old sprite, the new one looks nice yes but so small that it can be easy to miss.
天地为证 10 Apr @ 8:34pm 
反馈一个bug,在造了储藏室之后再造一个箱子,打开一次箱子,再打开储藏室会崩溃
Alter 28 Mar @ 8:41pm 
when i attempt to make changes to mod configure, the changes do not save
shalala 21 Mar @ 7:16am 
一打开储藏室就游戏连接断开的试试把自动整理物品这个mod关掉或者换成自动整理箱子
记昨日书 20 Mar @ 7:21am 
地窖放在地上不显示了
yevfk123 18 Mar @ 2:19pm 
不能移动不知道为啥,alt 加右键只能打开
唱跳RAP打篮球 18 Mar @ 4:40am 
mod老是崩溃一开储藏室就崩
dodo_Official 15 Mar @ 7:36am 
地窖模型比实际占地位置矮了一格,建家对不齐:lunar2019piginablanket:
傳說󰀘覺悟  [author] 8 Mar @ 6:09am 
@21B 发布了,感谢提供信息
傳說󰀘覺悟  [author] 8 Mar @ 4:22am 
这样有个问题哦,重载或者重新启动服务器超过一组的会吐出来,回头我看看怎么解决吧
21B 7 Mar @ 6:20am 
抱歉, 我看漏了一个参数, 其实只要该一行就行了
modmain.lua 141
local item = inst.components.container:RemoveItemBySlot(k)
改为
local item = inst.components.container:RemoveItemBySlot(k, true)
21B 7 Mar @ 5:54am 
我的意思是, 我私底下修改了这个mod
在modmain.lua 140 行
for k, v in pairs(inst.components.container.slots) do
...
end
这个循环取出容器中的所有物品之前, 加上
inst.components.container.ignoreoverstacked = true
官方在container这个components加上了这个参数, 设置为true就不会乱掉东西了
然后在 149 行
for i = 1, #items do
...
end
这个循环结束后加上
inst.components.container.ignoreoverstacked = false
把这个参数设置回去
这样升级后使用整理功能就不会掉东西了
虽然我自己本地单机能用, 但是联机无法使用, 我真的很需要这个功能,球球你更新这个攻能
傳說󰀘覺悟  [author] 7 Mar @ 4:54am 
@21B 好的,我测试下,之前测试有加的,只是整理的时候会弹出部分物品,后来懒得处理就索性禁用了
21B 7 Mar @ 4:26am 
我测试过, 只需要在 RemoveItemBySlot 前加上inst.components.container.ignoreoverstacked = true 然后在GiveItem后 加上inst.components.container.ignoreoverstacked = false 就能在弹性升级后正常使用整理了, 球球你更新这个攻能
denis 7 Feb @ 5:05am 
Sortout don't working with elastispacer
Vivang 1 Feb @ 7:15am 
经常卡掉线
28 Jan @ 9:48pm 
现在不知道啥问题,开箱子就直接闪退。服务器里也没有崩溃记录,很奇怪
Alive 19 Jan @ 10:20pm 
这个地窖模组,我开了反鲜之后(不清楚是不是这个原因),巨卡无比,只要有人开启地窖其他人就会卡成PPT
Wind. 11 Jan @ 5:59am 
怎么都找不到东西
zzd 7 Jan @ 9:41am 
这个在哪里,找半天找不到:steamfacepalm:
傳說󰀘覺悟  [author] 28 Dec, 2024 @ 3:49am 
@8low18 多格装备栏或者背包等其他模组的问题
8low18 27 Dec, 2024 @ 4:30pm 
大佬麻烦问一下 刚从新上游戏后箱子里的东西都不能直接使用了,只能拿出来才能识别到
(🎀ᗜ`‸´ᗜ 🌸)💈❌ 26 Dec, 2024 @ 11:41pm 
额,没事了,取消订阅重新下载解决了
(🎀ᗜ`‸´ᗜ 🌸)💈❌ 26 Dec, 2024 @ 11:23pm 
现在点开地窖就会服务器失连,这怎么整?
常凯申 23 Dec, 2024 @ 5:39am 
他们说的这个设置在哪里啊,大佬?
傳說󰀘覺悟  [author] 22 Dec, 2024 @ 8:56am 
@陌言 涉及存放东西太多,整理的话估计有些服务器不好受
@萧曦QAQ 模组是否成功打上,有的话需要炼金引擎做
@Hosplay Can be used interchangeably, Old world also works
Hosplay 17 Dec, 2024 @ 9:48pm 
if I install this mod with an old mod, will it replace it or not, and do I need to create a new world?