Stardew Valley
0 of 0

File information

Last updated

Original upload

Created by

Yyeahdude

Uploaded by

Yyeahdude

Virus scan

Safe to use

About this mod

Allows you to customize which days the traveling cart visits your town using a config.json file.

Requirements
Permissions and credits
Donations
Summary:
This mod allows you to customize which days the traveling cart visits your town using a config file. So now rather than the cart showing up on the fixed days of Friday and Sunday you can customize its schedule to whatever you'd like by setting the chance of the cart showing up to for each individual day.


Config File:
The config.json file will be created automatically the first time you load Stardew Valley and stored in the same folder as the .dll file for this mod, located in your Mods folder.
The file will look something like this:
{
public int Monday { get; set; } = 0;
        public int Tuesday { get; set; } = 0;
        public int Wednesday { get; set; } = 0;
        public int Thursday { get; set; } = 0;
        public int Friday { get; set; } = 100;
        public int Saturday { get; set; } = 0;
        public int Sunday { get; set; } = 100;

}
The number associated with each day is the percent chance of the cart showing up, where 0 means the cart will never come on that day and 100 means it always will.


Default Settings:
By default the mod is configured to the default Fridays and Sundays schedule, but remember the whole point of this mod is to configure the schedule to your personal preference.


Possible Ideas For Settings:
-"Traveling Cart no longer travels but is constant fixture in the Stardew Valley Community everyday"
{
"Monday": 100,
"Tuesday": 100,
"Wednesday": 100,
"Thursday": 100,
"Friday": 100,
"Saturday": 100,
"Sunday": 100


-"Traveling Cart appearance is truly rare, this will make the cart show up about once a month"
{
"Monday": 4,
"Tuesday": 4,
"Wednesday": 4,
"Thursday": 4,
"Friday": 4,
"Saturday": 4,
"Sunday": 4


-"Balanced version: default config(100 + 100) = this setting(15 + 15 + 15 + 15 + 40 + 50 + 50) = 200"
{
  "Monday": 15,
  "Tuesday": 15,
  "Wednesday": 15,
  "Thursday": 15,
  "Friday": 40,
  "Saturday": 50,
  "Sunday": 50
}



Changes:
1.2.1 :
- Fixed 1% chance for cart to arrive when config was set to 0
- Adjusted default config values to match vanilla. (100% chance on Fridays and Sundays)- The new default config file values only affects fresh installs of this mod, and wont change currently existing config files if you are simply updating
- Currently testing the Night Market for issues


Please feel free to contact me with issues, suggestions, or even just neat configs you come up with.