安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






Does it also work with codex umbra?
Stackable Equipments
Unbreakable Sewable Items
Uncompromising
Infinite Stacks
maybe one of them
log [anotepad.com]
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2906717350
Adding its recommended addon is not helping either.
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2324689937
Fuel slots for anything but weapon are weirdly in the corner of the screen and can't be interacted with.
1.3.0
* Added support for the Lazy Forager.
* Added support for using Pure Horror as fuel.
* Default polling rate is now 2 hz by default.
* Added an option to adjust the fuel polling rate of the mod.
* Slightly reduced the file size of the mod.
Lazy Forager has been added, along with being able to use Pure Horror as fuel, and a couple other small things.
Example pocketwatch_weapon_inv (wanda's weapon)
Original:
function params.pocketwatch_weapon_inv.itemtestfn(container, item, slot)
return item:HasTag("nightmarefuel") -- Tag added by this mod, not in vanilla.
end
New:
function params.pocketwatch_weapon_inv.itemtestfn(container, item, slot)
if item:HasTag("nightmarefuel") then
return true
end
if item:HasTag("horrorfuel") then
return true
end
return false
end
pay attention on the names function this is for wanda weapon but we have
thurible_inv
yellowamulet_inv etc
finally at the end of the file add this line too
AddPrefabPostInit("horrorfuel", function(inst)
inst:AddTag("horrorfuel")
end)
this's what you want i hope the creator can do the update
Now that it's twice as efficient I'd like to use it instead of the nightmare fuel.