Hi Just wanted to say i love your mods. However for some reason when i try to use this set my game is crashing i have no other mods either. I have extracted the file but still wont work
Hello! First of all, i love this mod and all of its furnitures, thank you so much. But i have a question about the Starry Bed/Haunted Attic Double Bed (Dark). Ive been using this mod for 2 ingame years and i cant for the life of me find the haunted double bed anywhere in stock, both dark and purple variation, i cant find the recipe for them either, i only found the Haunted attic single beds. I check the Saturday market every time for it but its never there, the stock barely changes honestly (Same with the carpenter shop). May you help me with this? Is there anything specific I need to do to unlock the haunted attic double beds? Or am I just cursed with bad luck 😭? Thank you for your attention either way!
I thought it was just me but I think the recipe for it isn't added to Merri's stall even though it should be. The bed itself can (and will sometime) show up for purchase as part of Merri's rotating stock, but not the recipe. But you can swap it for a different bed, I can make a version that replaces say, one of the cabin beds instead.
Hello! Could you help me with how i should rewrite the json code? I want the starry bed to replace the yellow version of the Basic Double Bed (the one they sell in the carpenter shop), but since im on steam deck im having trouble navigating anything outside the mods folder 😅 sorry for the trouble
1. Open the mod folder, then open the sprites folder. 2. Right-click edit the json file inside it. 3. Search/scroll to spr_furniture_haunted_attic_double_bed_dark_spring4. It'll look like this:
"spr_furniture_haunted_attic_double_bed_dark_spring": { "Location": "images/starry_bed/base.png" }, "spr_furniture_haunted_attic_double_bed_dark_spring_top": { "Location": "images/starry_bed/top.png" }, "spr_furniture_haunted_attic_double_bed_dark_shadow": { "Location": "images/starry_bed/shadow.png" }, "spr_ui_item_furniture_haunted_attic_double_bed_dark": { "Location": "images/starry_bed/UI_icon.png", "IsUiSprite": true We want to replace every instance of "furniture_haunted_attic_double_bed_dark_spring" with the appropriate "furniture_basic_double_bed_v1_spring". So replace that code block above with this: "spr_furniture_basic_double_bed_v1_spring": { "Location": "images/starry_bed/base.png" }, "spr_furniture_basic_double_bed_v1_spring_top": { "Location": "images/starry_bed/top.png" }, "spr_furniture_basic_double_bed_v1_spring_shadow": { "Location": "images/starry_bed/shadow.png" }, "spr_ui_item_furniture_basic_double_bed_v1_spring": { "Location": "images/starry_bed/UI_icon.png", "IsUiSprite": true
Hey there! I adore this set, and I'm already using quite a lot of it, but I was wondering if it's possible to not have it replace certain things at all? Specifically I was hoping to somehow mix and match your set with helasquids' Dark Botanicals, since both mods replace the Haunted Attic double bed, flooring, and wallpaper. Could the code be commented out in the json file? Or would that break something?
Hi sorry I don't know why I didn't see this comment sooner. Yes, totally possible - well, not with commenting, you can't comment in jsons - but you can delete the sections in the json you don't want. Deleting the 'tilesets' folder will remove the wallpaper/floor changes from my mod, and I'm about to write a version that replaces the cabin bed instead so you could download that and just delete the tilesets folder prior to install.
hi! is there a DIY way to change which items this replaces? i'd love to use it when the update lets us get extra rooms, but i'm also using some of the items it replaces (like the firewood stacks) :^(
Hi there, Yes! To change the items it replaces, you'll need to open up the sprites folder and open up the witchy_set.json file inside it in an editor. Ctrl+F to find the items you want to change, like the firewood, and where it says: "spr_furniture_cabin_firewood_v1_spring": { "Location": "images/books_v1/v1.png" }, "spr_furniture_cabin_firewood_v1_shadow": { "Location": "images/books_v1/shadow.png" }, "spr_ui_item_furniture_cabin_firewood_v1": { "Location": "images/books_v1/UI_icon.png", "IsUiSprite": true }, "spr_ui_item_furniture_cabin_firewood_v1_outline": { "Location": "images/books_v1/UI_icon_outline.png", "IsUiSprite": true }, Change the "spr_furniture_cabin_firewood_v1_spring" for whatever you want to replace instead. For example if you wanted to make the book piles replace, say, the spring festival planter, you'd change it to "spr_decor_spring_festival_planter_spring" (make sure this name doesn't end in _0 or .png). Do this for each instance, the shadow, the UI icon, UI icon outline, for each version of firewood. Save the changes, run MOMI and reinstall and test it out.
To find the name of the thing you want to replace, you can try looking it up inside the fiddle.json inside your Fields of Mistria folder (just ctrl+F and type in part of the name and search). Or honestly just ask me and I'll tell you haha.
Depending on what you choose you may end up with the hitbox lining up strangely, that's also fixable but at that point you will be straight up learning how to write a mod so I'd recommend joining the Fields of Mistria discord modding channel for more in-depth info if that's something you want to pursue!
Any chance for a Goth/Emo set at some point?? I've been trying to do a pink and black pastel goth type of vibe in my home but it's hard with what we currently have.
Please ask this to the creator of MOMI It sounds like your device is just out of RAM, and maybe rebooting would free up some memory to run better, but if MOMI is having an error best to ask the man who made it ^^
I love the witchy decor and barns, but I love the pink aesthetic too. Would you ever consider making a pastel/pink version of your witchy stuff? <3 thanks for your hard work!
Hiya! I'm not sure - right now I'm working on pastel pink/gold/warm white cottage core type furniture set with lots of flowers, and when that's done I do want to make some magical girl theme things which will have a similar more vibrant colour palette. I'd also be down to maybe make some pink/black/purple kuromi type stuff. I'm not sure if I'll recolour the witchy set per se, but I absolutely give my permission for anyone who wants to to do so!
45 comments
1. Open the mod folder, then open the
sprites
folder.2. Right-click edit the json file inside it.
3. Search/scroll to
spr_furniture_haunted_attic_double_bed_dark_spring
4. It'll look like this:"spr_furniture_haunted_attic_double_bed_dark_spring": {
"Location": "images/starry_bed/base.png"
},
"spr_furniture_haunted_attic_double_bed_dark_spring_top": {
"Location": "images/starry_bed/top.png"
},
"spr_furniture_haunted_attic_double_bed_dark_shadow": {
"Location": "images/starry_bed/shadow.png"
},
"spr_ui_item_furniture_haunted_attic_double_bed_dark": {
"Location": "images/starry_bed/UI_icon.png",
"IsUiSprite": true
We want to replace every instance of "furniture_haunted_attic_double_bed_dark_spring" with the appropriate "furniture_basic_double_bed_v1_spring". So replace that code block above with this:
"spr_furniture_basic_double_bed_v1_spring": {
"Location": "images/starry_bed/base.png"
},
"spr_furniture_basic_double_bed_v1_spring_top": {
"Location": "images/starry_bed/top.png"
},
"spr_furniture_basic_double_bed_v1_spring_shadow": {
"Location": "images/starry_bed/shadow.png"
},
"spr_ui_item_furniture_basic_double_bed_v1_spring": {
"Location": "images/starry_bed/UI_icon.png",
"IsUiSprite": true
Hit save and you're done!
Yes!
To change the items it replaces, you'll need to open up the sprites folder and open up the witchy_set.json file inside it in an editor. Ctrl+F to find the items you want to change, like the firewood, and where it says:
"spr_furniture_cabin_firewood_v1_spring": {
Change the "spr_furniture_cabin_firewood_v1_spring" for whatever you want to replace instead. For example if you wanted to make the book piles replace, say, the spring festival planter, you'd change it to "spr_decor_spring_festival_planter_spring" (make sure this name doesn't end in _0 or .png). Do this for each instance, the shadow, the UI icon, UI icon outline, for each version of firewood. Save the changes, run MOMI and reinstall and test it out."Location": "images/books_v1/v1.png"
},
"spr_furniture_cabin_firewood_v1_shadow": {
"Location": "images/books_v1/shadow.png"
},
"spr_ui_item_furniture_cabin_firewood_v1": {
"Location": "images/books_v1/UI_icon.png",
"IsUiSprite": true
},
"spr_ui_item_furniture_cabin_firewood_v1_outline": {
"Location": "images/books_v1/UI_icon_outline.png",
"IsUiSprite": true
},
To find the name of the thing you want to replace, you can try looking it up inside the fiddle.json inside your Fields of Mistria folder (just ctrl+F and type in part of the name and search). Or honestly just ask me and I'll tell you haha.
Depending on what you choose you may end up with the hitbox lining up strangely, that's also fixable but at that point you will be straight up learning how to write a mod so I'd recommend joining the Fields of Mistria discord modding channel for more in-depth info if that's something you want to pursue!
Exception of type 'System.OutOfMemoryException' was thrown. at 00C1D3EC while reading chunk TXTR in chunk FORM
It sounds like your device is just out of RAM, and maybe rebooting would free up some memory to run better, but if MOMI is having an error best to ask the man who made it ^^
I'm not sure if I'll recolour the witchy set per se, but I absolutely give my permission for anyone who wants to to do so!