old101 / stardew-valley-daily-screenshot-mod

:honeybee: A Stardew Valley mod that automatically takes a screenshot of your entire farm at the start of each day

Home Page:https://www.nexusmods.com/stardewvalley/mods/4779

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

Daily Screenshot v2.0

A Stardew Valley mod that automatically takes a screenshot of your entire farm at the start of each day.

Releases can be found at the following websites:

For Android users, releases can be found at the following websites:

Features

  • One screenshot is automatically taken of your entire farm every day as soon as you leave your house.
  • Choose what time the screenshot gets taken.
  • Choose how often a screenshot gets taken (daily, weekly, monthly, etc).
  • Screenshots are sent to your StardewValley/Screenshots folder, with each save file getting its own "FarmName-Screenshots" folder. Screenshots between multiple save files will not get mixed up.
  • Easily access the screenshots in-game by scrolling to the bottom of the "Options" tab in the menu and clicking the "Open Destination Folder" button.
  • Super easy to gather screenshots to create a GIF that shows how your farm changes over time! GIF makers can be found online, such as ezgif GIF maker. Here is an example.
  • Keeps the screenshots in the correct order to make creating the GIF easier. This is achieved by naming each screenshot with a "year-season-day.png" numerical format. For example, on Year 1, Winter, Day 3, the screenshot would be named "01-04-03.png".
  • Keyboard shortcut that takes a screenshot when pressed (set to "None" by default).
  • Can choose to disable automatic screenshots for rainy weather days (takes a screenshot every day regardless of weather by default).
  • Custom configuration options, including ability to add multiple custom rules! See below.

Installation

  1. Install the latest version of SMAPI.
  2. Download this mod and unzip it into Stardew Valley/Mods.
  3. Run the game using SMAPI.

Compatibility

  • Works with Stardew Valley 1.4 or later on Linux/Mac/Windows.
  • Works in both single player and multiplayer.
  • No known mod conflicts.

Configuration File

Note: Older configuration files will automatically be upgraded to the newer format

You can add as many rules as you would like. The config file looks like:

{
  "SnapshotRules": [
    {
      "Name": "Daily Farm Picture",
      "ZoomLevel": 0.25,
      "Directory": "Default",
      "FileName": "Default",
      "Trigger": {
        "Days": "Daily",
        "Weather": "Any",
        "Location": "Farm",
        "Key": "None",
        "StartTime": 600,
        "EndTime": 2600
      }
    },
    {
      "Name": "Keypress Picture",
      "ZoomLevel": 1.0,
      "Directory": "/home/bob/SDV",
      "FileName": "None",
      "Trigger": {
        "Days": "Daily",
        "Weather": "Any",
        "Location": "Any",
        "Key": "Multiply",
        "StartTime": 600,
        "EndTime": 2600
      }
    }
  ]
}

Triggers are things that must happen for a screenshot to take place. All of the items must be true. Automatic screen shots (without a key press) happen at most once a day.

Setting Description Type Default Setting
Name What to show when taking a picture. Rules without a name will be given a name automatically string Unnamed Rule #
ZoomLevel How should the picture be scaled. Any number between 0.01 and 1.0. The smaller the number, the smaller the picture (smaller pictures take less disk space) float 0.25
Directory Where to save the picture.

Default or empty means the standard Startdew Valley screenshot directory.

Note: Remember to use a double backslash on Windows.
string Default
Filename A combination of values for the filename, separated by commas.

Possible values are: None, Date, FarmName, GameID, Location, Weather, PlayerName, Time, UniqueID.

Will follow the pattern: {FarmName}-{GameID}/{Location}/{Weather}/{Player Name}-{Date}-{Time}-{Unique ID}
Enum Date, FarmName, GameID, Location
Days A combination of values for the days and seasons to take a screen shot.

Possible values are: Day_1 .. Day_28, Sundays, Mondays, Tuesdays, Wednesdays, Thursdays, Fridays, Saturdays, FirstDayOfTheMonth, LastDayOfTheMonth, Spring, Summer, Fall, Winter, AnySeason, AnyDay, Daily.

Note: It is important if not using the daily value to specify season(s) and day(s) or a picture will not be taken.

Example: To take a picture on the 15th of fall use Day_15, Fall.
enum Daily
Weather A combination of values for the weather.

Possible values are: Sunny, Rainy, Windy, Stormy, Snowy, Any.
enum Any
Location A combination of locations to take a picture. Picture will be taken when going to one of these locations.

Possible values are: Farm, Farmhouse, Greenhouse, Beach, FarmCave, Cellar, Desert, Museum, CommunityCenter, Mountain, Unknown, Any.

Note: Unknown is not any of the listed locations.
enum Any
Key Key press to look for to take a picture. If set the picture will be taken on demand and not automatically.

Possible values: List of possible keybindings
enum None
StartTime Earliest point at which to take the picture. The time cannot be more than EndTime and must be less than 600. Must be an increment of 10. int 600
EndTime Last point at which to take the picture. The time cannot be less than StartTime and cannot be more than 2600. Must be an increment of 10. int 2600

About

:honeybee: A Stardew Valley mod that automatically takes a screenshot of your entire farm at the start of each day

https://www.nexusmods.com/stardewvalley/mods/4779

License:MIT License


Languages

Language:C# 97.5%Language:Shell 2.5%