Don't Starve Together

Don't Starve Together

77 ratings
Refuelable Lazy Stuffs
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
11.945 KB
Aug 30, 2019 @ 8:56am
Sep 5, 2019 @ 2:32pm
2 Change Notes ( view )

Subscribe to download
Refuelable Lazy Stuffs

In 1 collection by Ezzaroth
Buffs for Underused Stuffs
19 items
Description
Lazy Forager and Lazy Explorer can now be refueled with Orange Gem and Nightmare Fuel.


The Lazy Explorer
● Nightmare Fuel restores 1 use.
● Orange Gem restores 10 uses.
● No longer disappears at 0% durability.
● Sanity reduction decreased from 15 to 5 per use.


The Lazy Forager
● Nightmare Fuel restores 25 uses.
● Orange Gem restores 200 uses.
● No longer disappears at 0% durability.
12 Comments
Masterblaster38 Jul 11, 2022 @ 5:30pm 
I didn't know why but the lazy forager crashes the server/makes a pop up when equipped, and when I put off this mod It works fine.
bpdoll Jun 16, 2021 @ 1:19am 
love ur mod so much! could you maybe make a ds version of it? such a shame there isn't one yet. please lmk!:DSTsmallbird:
this is a name yes Jun 5, 2021 @ 11:45pm 
i like this
Quartino Dec 5, 2020 @ 7:23pm 
Could we get the ability to configure this mod to remove the san reduction?
Qwerty Gamin' May 20, 2020 @ 3:27am 
This is the best because for those lazy individuals who use these items are too lazy to go out of there way to get new ones every time it runs out.
magumbariesu Mar 27, 2020 @ 4:59pm 
Good mod. But I don't like the buff at sanity in lazy explorer
WeslYght Jan 20, 2020 @ 2:26pm 
Really good mod You do an amazing job :D
Little Schemer Oct 30, 2019 @ 6:44am 
underated mod tbh
Ezzaroth  [author] Sep 5, 2019 @ 2:34pm 
@Sohjiro Thanks for the heads up, I've fixed the bug.
Sohjiro Sep 5, 2019 @ 12:41pm 
i made a fix for it just change your OnAccept function to this

inst.SoundEmitter:PlaySound("dontstarve/common/telebase_gemplace")
local before
if inst.components.finiteuses then
before = inst.components.finiteuses:GetPercent()
inst.components.finiteuses:SetUses(inst.components.finiteuses:GetUses() + fuelvalue[item.prefab])
if inst.components.finiteuses:GetPercent() > 1 then
inst.components.finiteuses:SetPercent(1)
end
end
local owner = inst.components.inventoryitem ~= nil and inst.components.inventoryitem.owner or nil
if inst.components.equippable ~= nil and inst.components.equippable:IsEquipped() and before == 0 then
inst.task = inst:DoPeriodicTask(TUNING.ORANGEAMULET_ICD, pickup, nil, owner)
end