0 of 0

File information

Last updated

Original upload

Created by

funny-snek and Zuberii

Uploaded by

funnysnek

Virus scan

Safe to use

134 comments

  1. GeneticOpera123
    GeneticOpera123
    • member
    • 0 kudos
    Hey I'm new to this. I thought I followed all of the instructions. I've installed SMAPI I have put 2 mods in the mod folder and it does neither. The mods are the always on server and NPC location as that one would be easier to see if it was working. I haven't seen how to get SMAPI logs it only pulls up a command line interface when I load the game so thats the only thing of SMAPI I've seen.

    apparently there is a mod interface that is supposed to load up according a video I just watched in 2021

    EDIT: NVM all of the guides never mention downloading Vortex it would have been nice.
  2. J1nx218394
    J1nx218394
    • member
    • 0 kudos
    Is there another way to make this work with 1.6
  3. moyzip
    moyzip
    • member
    • 3 kudos
    Hi Everyone, I'm working on updating this on my own mod upload https://www.nexusmods.com/stardewvalley/mods/20659/? as it looks like this hasn't been updated in a long while.

    Funny-snek was awesome enough to post it on github and gave is free and unencumbered with his permissions stated as:

    Anyone is free to copy, modify, publish, use, compile, sell, or
    distribute this software, either in source code form or as a compiled
    binary, for any purpose, commercial or non-commercial, and by any
    means.


    I'll be uploading the fork on my github soon to the public once I cleanup my embarassing updates/edits so we can all work together and add the latest events/functionality we want to see. It's still a bit buggy but able to be compiled/run with SMAPI 4.0 + Stardew 1.6.0
    1. toansla01
      toansla01
      • member
      • 0 kudos
      You are an amazing person +1 upvote
  4. stanman
    stanman
    • member
    • 0 kudos
    update this plssss

    there seem to be bugs like people getting kicked during events.
    my skills get messed up and sometimes i wake up with lvl 10 in everything.

    This is the best public mod we have atm, if there are any other solutions (that dont cost $) then tell me pls...
    1. Gevie
      Gevie
      • member
      • 0 kudos
      The skills going to 10 is by design but may be a buggy implementation, from what I can tell, the author intended to set the host character's skills to level 10 if in server mode.

      It stores a copy of the player's true skills in a json file so it can set the skills back to their originals when not in server mode. I haven't tested but it's possible this is not working properly or isn't being reflected to the user because of how skills usually display as progressing overnight.

      Here is an example function which is executed when the user toggles the server mode on or off (this code is repeated in multiple places, the main part to look at is the lines like `Game1.player.FarmingLevel = 10` etc).

                      if (!IsEnabled)
                      {
                          Helper.ReadConfig<ModConfig>();
                          IsEnabled = true;
                          this.Monitor.Log("Server Mode On!", LogLevel.Info);
                          Game1.chatBox.addInfoMessage("The Host is in Server Mode!");
                          Game1.displayHUD = true;
                          Game1.addHUDMessage(new HUDMessage("Server Mode On!", ""));
                          Game1.options.pauseWhenOutOfFocus = false;
                          // store levels, set in game levels to max
                          var data = this.Helper.Data.ReadJsonFile<ModData>($"data/{Constants.SaveFolderName}.json") ?? new ModData();
                          data.FarmingLevel = Game1.player.FarmingLevel;
                          data.MiningLevel = Game1.player.MiningLevel;
                          data.ForagingLevel = Game1.player.ForagingLevel;
                          data.FishingLevel = Game1.player.FishingLevel;
                          data.CombatLevel = Game1.player.CombatLevel;
                          this.Helper.Data.WriteJsonFile($"data/{Constants.SaveFolderName}.json", data);
                          Game1.player.FarmingLevel = 10;
                          Game1.player.MiningLevel = 10;
                          Game1.player.ForagingLevel = 10;
                          Game1.player.FishingLevel = 10;
                          Game1.player.CombatLevel = 10;
                          ///////////////////////////////////////////
                      }
                      else
                      {
                          IsEnabled = false;
                          this.Monitor.Log("The server off!", LogLevel.Info);
                          Game1.chatBox.addInfoMessage("The Host has returned!");
                          Game1.displayHUD = true;
                          Game1.addHUDMessage(new HUDMessage("Server Mode Off!", ""));
                          //set player levels to stored levels
                          var data = this.Helper.Data.ReadJsonFile<ModData>($"data/{Constants.SaveFolderName}.json") ?? new ModData();
                          Game1.player.FarmingLevel = data.FarmingLevel;
                          Game1.player.MiningLevel = data.MiningLevel;
                          Game1.player.ForagingLevel = data.ForagingLevel;
                          Game1.player.FishingLevel = data.FishingLevel;
                          Game1.player.CombatLevel = data.CombatLevel;
                          //////////////////////////////////////
                      }
  5. mlsp3256
    mlsp3256
    • member
    • 0 kudos
    update please
  6. ReoSoraT
    ReoSoraT
    • member
    • 0 kudos
    In question, if nobody is inside the farm, does it skip days or stop or must it be stopped manually?
    1. dcyiyou
      dcyiyou
      • member
      • 0 kudos
      did you ever find this out ?
    2. marceloedu2
      marceloedu2
      • member
      • 0 kudos
      If the bot is sleeping, the day is early. If the bot is cut, the time is stopped
  7. LordBoop
    LordBoop
    • supporter
    • 0 kudos
    Is this mod getting updated? I'm trying to start a server for my friends and would like to know if i can get my hopes up.
  8. TheGrandJaggard
    TheGrandJaggard
    • member
    • 0 kudos
    Does this mod work with Casual life? Casual Life - Realtime Clock at Stardew Valley Nexus
    Thanks, Jaggard
  9. TigerBean
    TigerBean
    • supporter
    • 0 kudos
    (deleted)
  10. EncaItare
    EncaItare
    • member
    • 0 kudos
    Please update <:-(