0 of 0

File information

Last updated

Original upload

Created by

punyo

Uploaded by

yakminepunyo

Virus scan

Safe to use

19 comments

  1. wwZaraki
    wwZaraki
    • premium
    • 0 kudos
    Does this mod no longer work? It doesn't work for me and I can't find any config file for it.
    1. AyyItIsYaBoi
      AyyItIsYaBoi
      • member
      • 0 kudos
      There's an updated version. Here:
      https://community.playstarbound.com/threads/updating-mods-for-stardew-valley-1-3-closed.142524/page-77#post-3343697
  2. ftwranger
    ftwranger
    • member
    • 19 kudos
    how to make it decay overtime? I got 508 stamina late game , no matter what I do it won't get empty past half bar so food and cooking means nothing ,I made the value to -0.5 but it reset to 0 , I don't get the description
  3. BalanceAvatar
    BalanceAvatar
    • member
    • 0 kudos
    So I was reading through the code and I was curious if the following would be possible based on my observations:

    Intent: to have stamina drain to heal health.
    Requirements: Boolean for the config file to activate feature (config.burn), float for the "efficiency" value for a percent (config.drain)

    My thought is to insert another if block in public void OnOneSecondUpdateTicked to make the result closer to:

    if (config.burn && player.health < player.maxHealth && TicksAccumulator >= config.SecondsNeededToStartHealing)
    {
    HPAccumlator += config.HealingValuePerSeconds;
    if (HPAccumlator == Math.Floor(HPAccumlator))
    {
    player.health += (int)Math.Min(HPAccumlator, player.maxHealth - player.health);
    HPAccumlator = 0;
    player.Stamina -= (float)Math.Min(healing*config.drain, player.MaxStamina - player.Stamina);
    }
    }
  4. poogiechump
    poogiechump
    • member
    • 0 kudos
    Hello, I have an issue when I fish while using this mod. Whenever, i get a bite, it would freeze the screen (until i left click) and i did not get the loot/fish. I wonder if its only on my side
  5. Cracklesette
    Cracklesette
    • member
    • 0 kudos
    Hello, I'm checking out your mod and like the idea of having my stamina decay over the course of the day to make things more challenging. But I don't really know how to enable that. It seems like this mod only heals stamina at this point in time but from reading the description I got the impression that it could decrease stamina as well. Every time I try to decrease the stamina regen rate it stops at zero and doesn't go any further (meaning it can only add stamina and not decrease it). Did I misunderstand the description or has this mod changed since that was originally written? [I also noticed a typo in the mod, when the in game message is displayed "Increased" is misspelled]
  6. Lgrayson
    Lgrayson
    • member
    • 0 kudos
    How do I use this mod? Ive downloaded it but cant seem to get it to work in game. How to adjust?
  7. DodgeBullets
    DodgeBullets
    • member
    • 4 kudos
    Can someone please tell me what the f*#@ the 79 key is........ wtf
  8. inzagwa
    inzagwa
    • member
    • 0 kudos
    can we get the "NotHealWhileRunning" option back. I really liked having a tiny passive heal, that way activities like farming, mining and logging required energy management and food, but gathering, fishing and shopping allow my farmer to "catch their breath" some.
    1. mods2mods
      mods2mods
      • member
      • 0 kudos
      I second this. Walking from place to place isn't labour. I feel it's a comfortable option.
  9. PixelGamerXx
    PixelGamerXx
    • member
    • 0 kudos
    Where is the config file on the 1.0.4 version?
    1. inzagwa
      inzagwa
      • member
      • 0 kudos
      config files don't generate until you run it once.
  10. cryinghawk
    cryinghawk
    • member
    • 1 kudos
    any chance I could somehow switch the P and O keybinds? I used them for something else atm.
    1. yakminepunyo
      yakminepunyo
      • premium
      • 25 kudos
      You can change them by editing config.json