For anyone having trouble opening the download, you need 7zip (7zip.org). I already had it installed so I had no problem, but I see others had some issues.
If you're like me and HATE that food spoils but crash from mods that completely remove the spoil rate, open this script and change
vuxFoodTimer = .5
to
vuxFoodTimer = .0000001
The timer for spoiling is so long, it'll probably outlive us all.
Seems to work, though my countdown timer appears to be counting down 2 seconds at a time, but I've set mine to .01 (10x slower) decay. Still works out to at least 5x slower which I'm happy with.
I think that the download link is broken, I am unable to properly Download it manually. it downloads some file "Food Decay x0.5-816-1-4-1-1708355570.rar" but I cant do anything with it, and when you open it in notepad its just a bunch of jargon.
I downloaded it manually and it's fine. I also changed .5 to .01 so it takes even longer. this solves the issue of the items losing a timer and being sent into regular containers instead of the food containers.
If you go inside ReduceFoodSpoilRate x0.5 folder, find main.lua and open it with notepad you can change the spoil rate. the lower then number the slower it takes to spoil.
I changed mine to .01 by editing "vuxFoodTimer = .5 -> .01" You can choose whichever rate you desire though
-- Tested on version 0.1.4.1 vuxGameVersion = "0.1.4.1" vuxFoodTimer = .01 -- Doubles the time until spoiled (Lower value will increase the time) vuxAlreadyHandled = false RegisterHook("/Script/Engine.PlayerController:ClientRestart", function() if vuxAlreadyHandled == false then local items = FindAllOf("PalStaticItemDataBase") for _, item in ipairs(items) do if item.CorruptionFactor > 0 then item.CorruptionFactor = item.CorruptionFactor * vuxFoodTimer end end print("Remove food spoil rate set to " .. vuxFoodTimer .." loaded for game version " .. vuxGameVersion) vuxAlreadyHandled = true end end)
To the girl that posted about the broken link, did you ever figure out the answer to this? I'm having the same exact issue. Edit: So it seems you need to download a different unzipping program to open them. The one that comes on windows wont always do the job apparently.
11 comments
I already had it installed so I had no problem, but I see others had some issues.
If you're like me and HATE that food spoils but crash from mods that completely remove the spoil rate, open this script and change
vuxFoodTimer = .5
to
vuxFoodTimer = .0000001
The timer for spoiling is so long, it'll probably outlive us all.
Also interesting note for the .01, maybe the author can change that cause i still felt like my food decay was too fast haha
I changed mine to .01 by editing "vuxFoodTimer = .5 -> .01" You can choose whichever rate you desire though
Edit: So it seems you need to download a different unzipping program to open them. The one that comes on windows wont always do the job apparently.