Stardew Valley

File information

Last updated

Original upload

Created by

Cazanna

Uploaded by

Cazanna

Virus scan

Safe to use

10 comments

  1. Chubbylicious
    Chubbylicious
    • member
    • 0 kudos
    Hello! I'm having a problem: 

    [SMAPI]    Skipped mods
    [SMAPI]    --------------------------------------------------
    [SMAPI]       These mods could not be added to your game.
    [SMAPI]       - [CP] Dutch Cabins\Junimo Huts because it's not a SMAPI mod (see https://smapi.io/xnb for info).
    [SMAPI]       - Dutch Farm Buildings 1.0.0 because its manifest has no EntryDll or ContentPackFor field; must specify one.

    Does anyone know how I fix this?
    1. Cazanna
      Cazanna
      • member
      • 1 kudos
      Hi! From what I can tell the mod you have downloaded named " - [CP] Dutch Cabins\Junimo Huts" is not the mod on this page. My mod only changes the textures of the cabin, not the junimo huts. And the folder is named "[CP] DutchCabins" when you unpack this .rar file. Did you maybe try to merge my mod with another mod (I guess Eemie's Dutch Farm Buildings from Moddrop??) that changes junimo huts? That could explain why it doesn't load in SMAPI. I think if you download this mod again and place it in the mods folder without editing or adding anything, it should work ^^

      For the Dutch Farm Buildings mod, I think you downloaded the mod from Moddrop right? That one is outdated and misses a bunch of code to make it work. But here's a guide to update it yourself. Don't worry, I already made the code for you, so all you have to do is copy and paste it:

      - Download the file from moddrop manually (so not the "install with moddrop" one)
      - Unzip the .rar file

      It should create the "SMAPI Dutch Farm Buildings" folder. You will find 2 folders inside, one named ContentPack and one named Junimo Huts, I won't focus on the junimo huts folder since in there you'll find a .xnb file and to use it we would have to make it a .png file first and that's a whole other tutorial. So sadly no Dutch junimo huts for now :/

      - Delete the "Junimo Huts" folder
      - Create a new notepad file and paste this inside:

      Spoiler:  
      Show
      {
        "Format": "1.4",
        "Changes": [
             {
      "Action": "EditImage",
      "Target": "Buildings/Barn",
      "FromFile": "ContentPack/fall/Barn.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Barn",
      "FromFile": "ContentPack/fall/Big Barn.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Coop",
      "FromFile": "ContentPack/fall/Big Coop.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Coop",
      "FromFile": "ContentPack/fall/Coop.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Barn",
      "FromFile": "ContentPack/fall/Deluxe Barn.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Coop",
      "FromFile": "ContentPack/fall/Deluxe Coop.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/houses",
      "FromFile": "ContentPack/fall/houses.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Mill",
      "FromFile": "ContentPack/fall/Mill.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Shed",
      "FromFile": "ContentPack/fall/Shed.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Silo",
      "FromFile": "ContentPack/fall/Silo.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Slime Hutch",
      "FromFile": "ContentPack/fall/Slime Hutch.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Stable",
      "FromFile": "ContentPack/fall/Stable.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Well",
      "FromFile": "ContentPack/fall/Well.png",
      "When": {
      "Season": "fall"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Barn",
      "FromFile": "ContentPack/spring/Barn.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Barn",
      "FromFile": "ContentPack/spring/Big Barn.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Coop",
      "FromFile": "ContentPack/spring/Big Coop.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Coop",
      "FromFile": "ContentPack/spring/Coop.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Barn",
      "FromFile": "ContentPack/spring/Deluxe Barn.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Coop",
      "FromFile": "ContentPack/spring/Deluxe Coop.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/houses",
      "FromFile": "ContentPack/spring/houses.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Mill",
      "FromFile": "ContentPack/spring/Mill.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Shed",
      "FromFile": "ContentPack/spring/Shed.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Silo",
      "FromFile": "ContentPack/spring/Silo.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Slime Hutch",
      "FromFile": "ContentPack/spring/Slime Hutch.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Stable",
      "FromFile": "ContentPack/spring/Stable.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Well",
      "FromFile": "ContentPack/spring/Well.png",
      "When": {
      "Season": "spring"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Barn",
      "FromFile": "ContentPack/summer/Barn.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Barn",
      "FromFile": "ContentPack/summer/Big Barn.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Coop",
      "FromFile": "ContentPack/summer/Big Coop.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Coop",
      "FromFile": "ContentPack/summer/Coop.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Barn",
      "FromFile": "ContentPack/summer/Deluxe Barn.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Coop",
      "FromFile": "ContentPack/summer/Deluxe Coop.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/houses",
      "FromFile": "ContentPack/summer/houses.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Mill",
      "FromFile": "ContentPack/summer/Mill.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Shed",
      "FromFile": "ContentPack/summer/Shed.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Silo",
      "FromFile": "ContentPack/summer/Silo.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Slime Hutch",
      "FromFile": "ContentPack/summer/Slime Hutch.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Stable",
      "FromFile": "ContentPack/summer/Stable.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Well",
      "FromFile": "ContentPack/summer/Well.png",
      "When": {
      "Season": "summer"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Barn",
      "FromFile": "ContentPack/winter/Barn.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Barn",
      "FromFile": "ContentPack/winter/Big Barn.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Big Coop",
      "FromFile": "ContentPack/winter/Big Coop.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Coop",
      "FromFile": "ContentPack/winter/Coop.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Barn",
      "FromFile": "ContentPack/winter/Deluxe Barn.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Deluxe Coop",
      "FromFile": "ContentPack/winter/Deluxe Coop.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/houses",
      "FromFile": "ContentPack/winter/houses.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Mill",
      "FromFile": "ContentPack/winter/Mill.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Shed",
      "FromFile": "ContentPack/winter/Shed.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Silo",
      "FromFile": "ContentPack/winter/Silo.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Slime Hutch",
      "FromFile": "ContentPack/winter/Slime Hutch.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Stable",
      "FromFile": "ContentPack/winter/Stable.png",
      "When": {
      "Season": "winter"
      }
      },
      {
      "Action": "EditImage",
      "Target": "Buildings/Well",
      "FromFile": "ContentPack/winter/Well.png",
      "When": {
      "Season": "winter"
      }
      }
      ]
      }

      - Save this file as content.json
      - Copy and paste the file inside the "SMAPI Dutch Farm Buildings" folder
      - Open the ContentPack folder inside the "SMAPI Dutch Farm Buildings" folder
      - Open the manifest.json file
      - Copy the code below and paste it inside that file and save it

      Spoiler:  
      Show
      {
         "Name": "Dutch Farm Buildings",
         "Author": "eemie",
         "Version":"1.0.0",
         "Description": "Only downloadable from nexusmods",
         "UniqueID": "eemie.dutch",
         "MinimumApiVersion": "2.0",
         "ContentPackFor": {
            "UniqueID": "Pathoschild.ContentPatcher",
            "MinimumVersion": "1.0.0"
         }
      }


      - Cut the file from the ContentPack folder and paste it inside the "SMAPI Dutch Farm Buildings" folder
      - Copy the whole "SMAPI Dutch Farm Buildings" folder and paste it inside the Mods folder of your Stardew Valley game like any other mod

      You have now updated the mod yourself! It should work now :)

      Good luck!
    2. iiK0U
      iiK0U
      • member
      • 0 kudos
      youre literally an angel omg tysm
  2. Gerzo
    Gerzo
    • member
    • 0 kudos
    could you please add this like a new cabin, and not just replace all others?
    my players would hate me when i change their cabins, but as an alterative it would be great for someones <3

    i mean, you have 3 models of this style, so you could add a new cabin with all 3 tiers
  3. ejohnston808
    ejohnston808
    • member
    • 0 kudos
    its a long shot but I wanted to download this and the dutch buildings mod you need for it isn't around anymore... any other way to get this mod?
    1. Cazanna
      Cazanna
      • member
      • 1 kudos
      Hi! Here is the link to the mod. It is however outdated, so in order to play with the farm buildings installed you need to update the files. In one of the posts below I have written a small guide on how to do that. Hope it helps!
  4. trishnguyen
    trishnguyen
    • member
    • 0 kudos
    Hi, I downloaded this mod and I add it into the Mods file, but I don't see any difference. How this mod can work or do you have any video to install this mod. Thank you so much!
    1. Cazanna
      Cazanna
      • member
      • 1 kudos
      Hi! Sorry for the very late response (a year late whoopsie). Make sure you have installed the latest version of SMAPI and Content Patcher. Otherwise the mod might not work. For a video on how to install (most) mods, this video explains it very well. Good luck!
  5. applefiend
    applefiend
    • premium
    • 4 kudos
    I just wanted to thank you for making this mod! I had planned to make my own version of this but I got distracted with life.

    Looks wonderful and better than what I could have done.
    1. Cazanna
      Cazanna
      • member
      • 1 kudos
      Thank you so much ^^