Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Does it also work with codex umbra?
Stackable Equipments
Unbreakable Sewable Items
Uncompromising
Infinite Stacks
maybe one of them
log [anotepad.com]
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2906717350
Adding its recommended addon is not helping either.
https://steamhost.cn/steamcommunity_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.