0 of 0

File information

Last updated

Original upload

Created by

KeithRavenTyler

Uploaded by

KeithRavenTyler

Virus scan

Safe to use

Tags for this mod

11 comments

  1. Samtoinette
    Samtoinette
    • supporter
    • 3 kudos
    Locked
    Sticky
    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.
  2. Weltrath
    Weltrath
    • member
    • 0 kudos
    Does it work since the update?  
  3. greenskye
    greenskye
    • premium
    • 0 kudos
    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.
    1. snips86x
      snips86x
      • supporter
      • 1 kudos
      Ours is showing the same issue
    2. itsc4
      itsc4
      • member
      • 0 kudos
      I tried this but then the timer just started counting down by 10 secs at a time. =(
  4. Echelon
    Echelon
    • premium
    • 106 kudos
    not sure why the mod giving a bad installer option in vortex, folder structure seems fine?
    1. TIBBERSUP2
      TIBBERSUP2
      • member
      • 0 kudos
      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.
    2. Drapsheik
      Drapsheik
      • supporter
      • 2 kudos
      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.
    3. Echelon
      Echelon
      • premium
      • 106 kudos
      I reported this and Vortex devs updated to resolve this issue with mods have a decimal and/or whitespace. This can be disregarded now.

      Also interesting note for the .01, maybe the author can change that cause i still felt like my food decay was too fast haha
    4. Drapsheik
      Drapsheik
      • supporter
      • 2 kudos
      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)
    5. itsc4
      itsc4
      • member
      • 0 kudos
      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. 
  5. snips86x
    snips86x
    • supporter
    • 1 kudos
    For dedicated, does this need to be server and client or just server?